diff --git a/.github/workflows/therock-ci-linux.yml b/.github/workflows/therock-ci-linux.yml index 4d8fbefdd7..eed78f6e31 100644 --- a/.github/workflows/therock-ci-linux.yml +++ b/.github/workflows/therock-ci-linux.yml @@ -31,14 +31,14 @@ jobs: AWS_SHARED_CREDENTIALS_FILE: /home/awsconfig/credentials.ini steps: - name: "Checking out repository for rocm-systems" - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + - name: Checkout TheRock repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: repository: "ROCm/TheRock" path: "TheRock" - ref: 550a6f7f6af0deaafba352da1dd0674e146902b6 # 2025-10-28 commit + ref: 6fab5d65a552483bcfa1f6ccaaabf699c8188c1e # 2025-11-06 commit - name: Install python deps run: | @@ -60,11 +60,12 @@ jobs: - name: Runner health status run: | ./TheRock/build_tools/health_status.py - + - name: Fetch sources timeout-minutes: 30 run: | - rm ./TheRock/patches/amd-mainline/rocm-systems/0010-clr-ClPrint-std-string-to-c-string-fix.patch + # Remove patches here if they cannot be applied cleanly, and they have not been deleted from TheRock repo + # rm ./TheRock/patches/amd-mainline/rocm-systems/*.patch ./TheRock/build_tools/fetch_sources.py --jobs 12 --no-include-rocm-systems --no-include-rocm-libraries --no-include-ml-frameworks diff --git a/.github/workflows/therock-ci-windows.yml b/.github/workflows/therock-ci-windows.yml index 5c680ddf3e..7f9f4ada5a 100644 --- a/.github/workflows/therock-ci-windows.yml +++ b/.github/workflows/therock-ci-windows.yml @@ -32,17 +32,17 @@ jobs: AMDGPU_FAMILIES: "gfx110X-dgpu" steps: - name: "Checking out repository for rocm-systems" - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Checkout TheRock repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: repository: "ROCm/TheRock" path: "TheRock" - ref: 550a6f7f6af0deaafba352da1dd0674e146902b6 # 2025-10-28 commit + ref: 6fab5d65a552483bcfa1f6ccaaabf699c8188c1e # 2025-11-06 commit - name: Set up Python - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0 + uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 with: python-version: '3.12' @@ -52,7 +52,8 @@ jobs: - name: Patch rocm-systems run: | - rm ./TheRock/patches/amd-mainline/rocm-systems/0010-clr-ClPrint-std-string-to-c-string-fix.patch + # Remove patches here if they cannot be applied cleanly, and they have not been deleted from TheRock repo + # rm ./TheRock/patches/amd-mainline/rocm-systems/*.patch git -c user.name="therockbot" -c "user.email=therockbot@amd.com" am --whitespace=nowarn ./TheRock/patches/amd-mainline/rocm-systems/*.patch - name: Install requirements diff --git a/.github/workflows/therock-test-packages.yml b/.github/workflows/therock-test-packages.yml index 9a0cb80a6f..ad904a77c5 100644 --- a/.github/workflows/therock-test-packages.yml +++ b/.github/workflows/therock-test-packages.yml @@ -24,7 +24,7 @@ jobs: components: ${{ steps.configure.outputs.components }} steps: - name: "Fetch 'build_tools' from repository" - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: sparse-checkout: build_tools path: "prejob" @@ -38,7 +38,7 @@ jobs: run: . '${{ github.workspace }}\prejob\build_tools\github_actions\cleanup_processes.ps1' - name: "Checking out repository" - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: repository: "ROCm/TheRock" @@ -77,7 +77,7 @@ jobs: THEROCK_BIN_DIR: "./build/bin" steps: - name: "Fetch 'build_tools' from repository" - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: sparse-checkout: build_tools path: "prejob" @@ -89,10 +89,10 @@ jobs: run: . '${{ github.workspace }}\prejob\build_tools\github_actions\cleanup_processes.ps1' - name: Checkout Repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: repository: "ROCm/TheRock" - ref: 550a6f7f6af0deaafba352da1dd0674e146902b6 # 2025-10-28 commit + ref: 6fab5d65a552483bcfa1f6ccaaabf699c8188c1e # 2025-11-06 commit - name: Run setup test environment workflow uses: './.github/actions/setup_test_environment' @@ -114,7 +114,7 @@ jobs: run: | if [ "${{ inputs.PLATFORM }}" == "linux" ]; then source ${VENV_DIR}/bin/activate ; else . ${VENV_DIR}/Scripts/activate ; fi ${{ matrix.components.test_script }} - + # GitHub's 'Complete job' step is unaware of launched executables # and will fail to clean up orphan processes. - name: Post-job cleanup processes on Windows