Skip to content

Commit

Permalink
GH-43840: [CI] Add cuda group to tasks.yml and minor updates for new …
Browse files Browse the repository at this point in the history
…cuda runner image (#43841)

### Rationale for this change

Trigger cuda jobs as a group on crossbow

### What changes are included in this PR?

Grouping of cuda tasks under `cuda` on tasks.yml.
We have also updated the cuda runner image used to https://github.com/voltrondata-labs/cuda-action-runner-builder/blob/bc1797368e02d98e4dc04de8afe41807e2171f3c/.github/workflows/cuda-dind-runners.yaml. It will run on Ubuntu 22.04, base Python is updated to 3.10, CUDA updated from 11.4.1 to 11.8.0

### Are these changes tested?

Via archery

### Are there any user-facing changes?

No
* GitHub Issue: #43840

Authored-by: Raúl Cumplido <[email protected]>
Signed-off-by: Antoine Pitrou <[email protected]>
  • Loading branch information
raulcd authored Sep 12, 2024
1 parent 15158bd commit 0c2891d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dev/tasks/docker-tests/github.cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
runs-on: ['self-hosted', 'cuda']
{{ macros.github_set_env(env) }}
timeout-minutes: {{ timeout|default(60) }}
env:
ARCHERY_USE_LEGACY_DOCKER_COMPOSE: 1
steps:
{{ macros.github_checkout_arrow(fetch_depth=fetch_depth|default(1))|indent }}
# python 3.8 is installed on the runner, no need to install
# python 3.10 is installed on the runner, no need to install
- name: Install pip
run: sudo apt update && sudo apt install python3-pip -y
- name: Install archery
run: python -m pip install -e arrow/dev/archery[docker]
run: python3 -m pip install -e arrow/dev/archery[docker]
- name: Execute Docker Build
shell: bash
env:
Expand Down
3 changes: 3 additions & 0 deletions dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ groups:

{############################# Testing tasks #################################}

cuda:
- test-cuda-*

test:
- test-*

Expand Down

0 comments on commit 0c2891d

Please sign in to comment.