diff --git a/.github/workflows/conda-cpp-build.yaml b/.github/workflows/conda-cpp-build.yaml index e4941414..34f2002c 100644 --- a/.github/workflows/conda-cpp-build.yaml +++ b/.github/workflows/conda-cpp-build.yaml @@ -15,8 +15,6 @@ on: node_type: type: string default: "cpu8" - build_script: - type: string script: type: string default: "ci/build_cpp.sh" @@ -110,7 +108,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 || inputs.script }} + run: ${{ 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 ed6724f4..826f28fb 100644 --- a/.github/workflows/conda-cpp-tests.yaml +++ b/.github/workflows/conda-cpp-tests.yaml @@ -12,8 +12,6 @@ on: type: string repo: type: string - test_script: - type: string script: type: string default: "ci/test_cpp.sh" @@ -135,7 +133,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 || inputs.script }} + run: ${{ 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 5ac74fac..5fea0caa 100644 --- a/.github/workflows/conda-python-build.yaml +++ b/.github/workflows/conda-python-build.yaml @@ -15,8 +15,6 @@ on: node_type: type: string default: "cpu8" - build_script: - type: string script: type: string default: "ci/build_python.sh" @@ -116,7 +114,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 || inputs.script }} + run: ${{ 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 155ae4cb..59a01c8c 100644 --- a/.github/workflows/conda-python-tests.yaml +++ b/.github/workflows/conda-python-tests.yaml @@ -12,8 +12,6 @@ on: type: string repo: type: string - test_script: - type: string script: type: string default: "ci/test_python.sh" @@ -139,7 +137,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 || inputs.script }} + run: ${{ inputs.script }} env: GH_TOKEN: ${{ github.token }} - name: Generate test report