From fa6130f805ad8b6b9fa44722791a9aabb40a7ce2 Mon Sep 17 00:00:00 2001 From: Jake Awe <50372925+AyodeAwe@users.noreply.github.com> Date: Mon, 18 Mar 2024 13:55:15 -0500 Subject: [PATCH] Update script input name (#15301) This PR updates the script inputs in the relevant workflows from `build_script` and `test_script` to `script`. Depends on https://github.com/rapidsai/shared-workflows/pull/191 --- .github/workflows/pr.yaml | 4 ++-- .github/workflows/test.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index e4aed2b2ef8..5bf9025d68d 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -69,7 +69,7 @@ jobs: uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.04 with: build_type: pull-request - test_script: "ci/test_python_cudf.sh" + script: "ci/test_python_cudf.sh" conda-python-other-tests: # Tests for dask_cudf, custreamz, cudf_kafka are separated for CI parallelism needs: conda-python-build @@ -77,7 +77,7 @@ jobs: uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-24.04 with: build_type: pull-request - test_script: "ci/test_python_other.sh" + script: "ci/test_python_other.sh" conda-java-tests: needs: conda-cpp-build secrets: inherit diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index d8f8c6f1e16..aeb092111a7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -51,7 +51,7 @@ jobs: branch: ${{ inputs.branch }} date: ${{ inputs.date }} sha: ${{ inputs.sha }} - test_script: "ci/test_python_cudf.sh" + script: "ci/test_python_cudf.sh" conda-python-other-tests: # Tests for dask_cudf, custreamz, cudf_kafka are separated for CI parallelism secrets: inherit @@ -61,7 +61,7 @@ jobs: branch: ${{ inputs.branch }} date: ${{ inputs.date }} sha: ${{ inputs.sha }} - test_script: "ci/test_python_other.sh" + script: "ci/test_python_other.sh" conda-java-tests: secrets: inherit uses: rapidsai/shared-workflows/.github/workflows/custom-job.yaml@branch-24.04