forked from rapidsai/cudf
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (37 loc) · 1.2 KB
/
pandas-tests.yaml
File metadata and controls
40 lines (37 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Pandas Test Job
on:
workflow_dispatch:
inputs:
branch:
description: |
Git branch the workflow run targets.
Required even when 'sha' is provided because it is also used for organizing artifacts.
required: true
type: string
date:
description: "Date (YYYY-MM-DD) this run is for. Used to organize artifacts produced by nightly builds"
required: true
type: string
sha:
description: "Full git commit SHA to check out"
required: true
type: string
permissions: {}
jobs:
pandas-tests:
# run the Pandas unit tests
permissions:
contents: read
id-token: write
secrets: inherit # zizmor: ignore[secrets-inherit]
uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@main
with:
build_type: nightly
branch: ${{ inputs.branch }}
date: ${{ inputs.date }}
sha: ${{ inputs.sha }}
node_type: "gpu-l4-latest-1"
container_image: "rapidsai/citestwheel:26.08-latest"
script: ci/cudf_pandas_scripts/pandas-tests/run.sh main
file_to_upload: ./main-results.json
artifact-name: main-results.json