diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index a00c08af..4d632700 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -23,6 +23,10 @@ on: type: boolean required: false +defaults: + run: + shell: bash + jobs: other-checks: runs-on: ubuntu-latest diff --git a/.github/workflows/conda-cpp-build.yaml b/.github/workflows/conda-cpp-build.yaml index cfce9c01..30268013 100644 --- a/.github/workflows/conda-cpp-build.yaml +++ b/.github/workflows/conda-cpp-build.yaml @@ -19,6 +19,10 @@ on: type: string default: "ci/build_cpp.sh" +defaults: + run: + shell: bash + permissions: actions: none checks: none @@ -74,3 +78,6 @@ jobs: echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}" - name: C++ build run: ${{ inputs.build_script }} + - name: Upload additional artifacts + if: "!cancelled()" + run: rapids-upload-artifacts-dir cuda${RAPIDS_CUDA_VERSION%%.*}_$(arch) diff --git a/.github/workflows/conda-cpp-tests.yaml b/.github/workflows/conda-cpp-tests.yaml index 0ba08b08..824b5635 100644 --- a/.github/workflows/conda-cpp-tests.yaml +++ b/.github/workflows/conda-cpp-tests.yaml @@ -19,6 +19,10 @@ on: type: string default: "ci/test_cpp.sh" +defaults: + run: + shell: bash + permissions: actions: none checks: none @@ -127,3 +131,6 @@ jobs: with: paths: "${{ env.RAPIDS_TESTS_DIR }}/*.xml" if: always() + - name: Upload additional artifacts + if: "!cancelled()" + run: rapids-upload-artifacts-dir cuda${RAPIDS_CUDA_VERSION%%.*}_$(arch) diff --git a/.github/workflows/conda-python-build.yaml b/.github/workflows/conda-python-build.yaml index 128c6f95..caf58ec4 100644 --- a/.github/workflows/conda-python-build.yaml +++ b/.github/workflows/conda-python-build.yaml @@ -19,6 +19,10 @@ on: type: string default: "ci/build_python.sh" +defaults: + run: + shell: bash + permissions: actions: none checks: none @@ -75,3 +79,6 @@ jobs: echo "RAPIDS_NIGHTLY_DATE=${{ inputs.date }}" >> "${GITHUB_ENV}" - name: Python build run: ${{ inputs.build_script }} + - name: Upload additional artifacts + if: "!cancelled()" + run: rapids-upload-artifacts-dir cuda${RAPIDS_CUDA_VERSION%%.*}_$(arch)_py${RAPIDS_PY_VERSION//.} diff --git a/.github/workflows/conda-python-tests.yaml b/.github/workflows/conda-python-tests.yaml index d53286ba..0a347407 100644 --- a/.github/workflows/conda-python-tests.yaml +++ b/.github/workflows/conda-python-tests.yaml @@ -22,6 +22,10 @@ on: type: boolean default: true +defaults: + run: + shell: bash + permissions: actions: none checks: none @@ -138,3 +142,6 @@ jobs: -s \ "${RAPIDS_COVERAGE_DIR}" \ -v + - name: Upload additional artifacts + if: "!cancelled()" + run: rapids-upload-artifacts-dir cuda${RAPIDS_CUDA_VERSION%%.*}_$(arch)_py${RAPIDS_PY_VERSION//.} diff --git a/.github/workflows/conda-upload-packages.yaml b/.github/workflows/conda-upload-packages.yaml index c4232e12..e5ab37e0 100644 --- a/.github/workflows/conda-upload-packages.yaml +++ b/.github/workflows/conda-upload-packages.yaml @@ -19,6 +19,10 @@ on: type: string default: main +defaults: + run: + shell: bash + permissions: actions: none checks: none diff --git a/.github/workflows/custom-job.yaml b/.github/workflows/custom-job.yaml index 93de4a4d..7786a5ff 100644 --- a/.github/workflows/custom-job.yaml +++ b/.github/workflows/custom-job.yaml @@ -25,6 +25,10 @@ on: required: true type: string +defaults: + run: + shell: bash + permissions: actions: none checks: none