diff --git a/.github/workflows/conda-cpp-build.yaml b/.github/workflows/conda-cpp-build.yaml index e2196647..e4941414 100644 --- a/.github/workflows/conda-cpp-build.yaml +++ b/.github/workflows/conda-cpp-build.yaml @@ -17,6 +17,8 @@ on: default: "cpu8" build_script: type: string + script: + type: string default: "ci/build_cpp.sh" matrix_filter: type: string @@ -72,6 +74,7 @@ jobs: echo "MATRIX=${MATRIX}" | tee --append "${GITHUB_OUTPUT}" build: + name: ${{ matrix.CUDA_VER }}, ${{ matrix.PY_VER }}, ${{ matrix.ARCH }}, ${{ matrix.LINUX_VER }} needs: compute-matrix timeout-minutes: 480 strategy: @@ -107,7 +110,7 @@ jobs: echo "RAPIDS_REF_NAME=${{ inputs.branch || github.ref_name }}" >> "${GITHUB_ENV}" echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}" - name: C++ build - run: ${{ inputs.build_script }} + run: ${{ inputs.build_script || inputs.script }} env: GH_TOKEN: ${{ github.token }} - name: Upload additional artifacts diff --git a/.github/workflows/conda-cpp-tests.yaml b/.github/workflows/conda-cpp-tests.yaml index c01b5e05..ed6724f4 100644 --- a/.github/workflows/conda-cpp-tests.yaml +++ b/.github/workflows/conda-cpp-tests.yaml @@ -14,6 +14,8 @@ on: type: string test_script: type: string + script: + type: string default: "ci/test_cpp.sh" matrix_filter: type: string @@ -133,7 +135,7 @@ jobs: echo "RAPIDS_REF_NAME=${{ inputs.branch || github.ref_name }}" >> "${GITHUB_ENV}" echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}" - name: C++ tests - run: ${{ inputs.test_script }} + run: ${{ inputs.test_script || inputs.script }} env: GH_TOKEN: ${{ github.token }} - name: Generate test report diff --git a/.github/workflows/conda-python-build.yaml b/.github/workflows/conda-python-build.yaml index 0bb3d248..5ac74fac 100644 --- a/.github/workflows/conda-python-build.yaml +++ b/.github/workflows/conda-python-build.yaml @@ -17,6 +17,8 @@ on: default: "cpu8" build_script: type: string + script: + type: string default: "ci/build_python.sh" matrix_filter: type: string @@ -114,7 +116,7 @@ jobs: echo "RAPIDS_REF_NAME=${{ inputs.branch || github.ref_name }}" >> "${GITHUB_ENV}" echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}" - name: Python build - run: ${{ inputs.build_script }} + run: ${{ inputs.build_script || inputs.script }} env: GH_TOKEN: ${{ github.token }} - name: Upload additional artifacts diff --git a/.github/workflows/conda-python-tests.yaml b/.github/workflows/conda-python-tests.yaml index e0c3c0d3..155ae4cb 100644 --- a/.github/workflows/conda-python-tests.yaml +++ b/.github/workflows/conda-python-tests.yaml @@ -14,6 +14,8 @@ on: type: string test_script: type: string + script: + type: string default: "ci/test_python.sh" run_codecov: type: boolean @@ -137,7 +139,7 @@ jobs: echo "RAPIDS_REF_NAME=${{ inputs.branch || github.ref_name }}" >> "${GITHUB_ENV}" echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}" - name: Python tests - run: ${{ inputs.test_script }} + run: ${{ inputs.test_script || inputs.script }} env: GH_TOKEN: ${{ github.token }} - name: Generate test report