| # 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: Dev |
| |
| on: |
| # always trigger except Dependabot "push" |
| push: |
| branches: |
| - '**' |
| - '!dependabot/**' |
| tags: |
| - '**' |
| pull_request: |
| |
| concurrency: |
| group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }} |
| cancel-in-progress: true |
| |
| permissions: |
| contents: read |
| |
| env: |
| ARCHERY_DEBUG: 1 |
| |
| jobs: |
| |
| lint: |
| name: Lint C++, Python, R, Docker, RAT |
| # Use Ubuntu 24.04 to ensure working pre-commit on Ubuntu 24.04. |
| runs-on: ubuntu-24.04 |
| if: ${{ !contains(github.event.pull_request.title, 'WIP') }} |
| timeout-minutes: 15 |
| steps: |
| - name: Checkout Arrow |
| uses: actions/checkout@v6 |
| with: |
| fetch-depth: 0 |
| - name: Install pre-commit |
| run: | |
| sudo apt update |
| sudo apt install -y -V \ |
| pre-commit \ |
| r-base \ |
| ruby-dev |
| - name: Cache pre-commit |
| uses: actions/cache@v5 |
| with: |
| path: | |
| ~/.cache/pre-commit |
| ~/.local/share/renv/cache |
| key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }} |
| - name: Install Air |
| uses: posit-dev/setup-air@63e80dedb6d275c94a3841e15e5ff8691e1ab237 # v1.0.0 |
| - name: Run pre-commit |
| run: | |
| pre-commit run --all-files --color=always --show-diff-on-failure |
| |
| release: |
| name: Source Release and Merge Script on ${{ matrix.runs-on }} |
| runs-on: ${{ matrix.runs-on }} |
| if: ${{ !contains(github.event.pull_request.title, 'WIP') }} |
| timeout-minutes: 15 |
| strategy: |
| fail-fast: false |
| matrix: |
| runs-on: |
| - macos-latest |
| - ubuntu-latest |
| env: |
| GIT_AUTHOR_NAME: "github-actions[bot]" |
| GIT_AUTHOR_EMAIL: "github-actions[bot]@users.noreply.github.com" |
| GIT_COMMITTER_NAME: "github-actions[bot]" |
| GIT_COMMITTER_EMAIL: "github-actions[bot]@users.noreply.github.com" |
| steps: |
| - name: Checkout Arrow |
| uses: actions/checkout@v6 |
| with: |
| fetch-depth: 0 |
| - name: Install Python |
| uses: actions/setup-python@v6 |
| with: |
| python-version: '3.12' |
| - name: Install Ruby |
| uses: ruby/setup-ruby@v1 |
| with: |
| ruby-version: ruby |
| - name: Install Dependencies |
| shell: bash |
| run: | |
| gem install test-unit openssl |
| pip install "cython>=3.1" setuptools pytest requests setuptools-scm |
| - name: Run Release Test |
| shell: bash |
| run: | |
| echo "GH_TOKEN=${{ secrets.GITHUB_TOKEN }}" > dev/release/.env |
| ci/scripts/release_test.sh $(pwd) |
| - name: Run Merge Script Test |
| shell: bash |
| run: pytest -v dev/test_merge_arrow_pr.py |