diff --git a/.github/workflows/run-as-coder.yml b/.github/workflows/run-as-coder.yml index bae7d6c3c00..d95a9e38b2d 100644 --- a/.github/workflows/run-as-coder.yml +++ b/.github/workflows/run-as-coder.yml @@ -50,15 +50,13 @@ jobs: eval "${{inputs.command}}" || exit_code=$? if [ ! -z "$exit_code" ]; then echo -e "::group::️❗ \e[1;31mInstructions to Reproduce CI Failure Locally\e[0m" - echo "::error:: If you'd like to replicate this failure on your local machine to investigate further, follow the steps below:" + echo "::error:: To replicate this failure locally, follow the steps below:" echo "1. Clone the repository, and navigate to the correct branch and commit:" echo " git clone --branch $GITHUB_REF_NAME --single-branch https://github.com/$GITHUB_REPOSITORY.git && cd $(echo $GITHUB_REPOSITORY | cut -d'/' -f2) && git checkout $GITHUB_SHA" echo "" - echo "2. Run the failed command inside the exact same Docker container used by the CI:" + echo "2. Run the failed command inside the same Docker container used by the CI:" echo " docker run --rm -it --gpus all --pull=always --volume \$PWD:/repo --workdir /repo ${{ inputs.image }} ${{inputs.command}}" echo "" - echo "This should allow you to precisely replicate the CI environment and troubleshoot the issue more effectively." - echo "" echo "For additional information, see:" echo " - DevContainer Documentation: https://github.com/NVIDIA/cccl/blob/main/.devcontainer/README.md" echo " - Continuous Integration (CI) Overview: https://github.com/NVIDIA/cccl/blob/main/ci-overview.md"