Unverified Commit a7188f61 authored by Dillon Cullinan's avatar Dillon Cullinan Committed by GitHub
Browse files

ci: Revert skopeo runner change (#8167)


Signed-off-by: default avatarDillon Cullinan <dcullinan@nvidia.com>
parent 2f658327
...@@ -426,7 +426,7 @@ jobs: ...@@ -426,7 +426,7 @@ jobs:
needs.build.result == 'success' && needs.build.result == 'success' &&
(needs.test.result == 'success' || needs.test.result == 'skipped') (needs.test.result == 'success' || needs.test.result == 'skipped')
name: copy-to-acr ${{ inputs.cpu_only && 'cpu' || format('cuda{0}', inputs.cuda_version) }} name: copy-to-acr ${{ inputs.cpu_only && 'cpu' || format('cuda{0}', inputs.cuda_version) }}
runs-on: prod-skopeo-v1 runs-on: prod-default-small-v2
outputs: outputs:
target_tag_plain: ${{ needs.build.outputs.target_tag_plain }} target_tag_plain: ${{ needs.build.outputs.target_tag_plain }}
steps: steps:
......
...@@ -471,7 +471,7 @@ jobs: ...@@ -471,7 +471,7 @@ jobs:
name: vllm-runtime # This name overlaps with other vllm jobs to group them in the UI name: vllm-runtime # This name overlaps with other vllm jobs to group them in the UI
needs: [changed-files, vllm-build, vllm-test] needs: [changed-files, vllm-build, vllm-test]
if: | if: |
always() && always() && !cancelled() &&
(needs.changed-files.outputs.core == 'true' || needs.changed-files.outputs.vllm == 'true' || needs.changed-files.outputs.deploy == 'true') && (needs.changed-files.outputs.core == 'true' || needs.changed-files.outputs.vllm == 'true' || needs.changed-files.outputs.deploy == 'true') &&
needs.vllm-build.result == 'success' && needs.vllm-build.result == 'success' &&
(needs.vllm-test.result == 'success' || needs.vllm-test.result == 'skipped') (needs.vllm-test.result == 'success' || needs.vllm-test.result == 'skipped')
...@@ -487,7 +487,7 @@ jobs: ...@@ -487,7 +487,7 @@ jobs:
name: sglang-runtime # This name overlaps with other sglang jobs to group them in the UI name: sglang-runtime # This name overlaps with other sglang jobs to group them in the UI
needs: [changed-files, sglang-build, sglang-test] needs: [changed-files, sglang-build, sglang-test]
if: | if: |
always() && always() && !cancelled() &&
(needs.changed-files.outputs.core == 'true' || needs.changed-files.outputs.sglang == 'true' || needs.changed-files.outputs.deploy == 'true') && (needs.changed-files.outputs.core == 'true' || needs.changed-files.outputs.sglang == 'true' || needs.changed-files.outputs.deploy == 'true') &&
needs.sglang-build.result == 'success' && needs.sglang-build.result == 'success' &&
(needs.sglang-test.result == 'success' || needs.sglang-test.result == 'skipped') (needs.sglang-test.result == 'success' || needs.sglang-test.result == 'skipped')
...@@ -503,7 +503,7 @@ jobs: ...@@ -503,7 +503,7 @@ jobs:
name: trtllm-runtime # This name overlaps with other trtllm jobs to group them in the UI name: trtllm-runtime # This name overlaps with other trtllm jobs to group them in the UI
needs: [changed-files, trtllm-build, trtllm-test] needs: [changed-files, trtllm-build, trtllm-test]
if: | if: |
always() && always() && !cancelled() &&
(needs.changed-files.outputs.core == 'true' || needs.changed-files.outputs.trtllm == 'true' || needs.changed-files.outputs.deploy == 'true') && (needs.changed-files.outputs.core == 'true' || needs.changed-files.outputs.trtllm == 'true' || needs.changed-files.outputs.deploy == 'true') &&
needs.trtllm-build.result == 'success' && needs.trtllm-build.result == 'success' &&
(needs.trtllm-test.result == 'success' || needs.trtllm-test.result == 'skipped') (needs.trtllm-test.result == 'success' || needs.trtllm-test.result == 'skipped')
......
...@@ -43,7 +43,7 @@ jobs: ...@@ -43,7 +43,7 @@ jobs:
matrix: matrix:
cuda_version: ${{ fromJson(inputs.cuda_version) }} cuda_version: ${{ fromJson(inputs.cuda_version) }}
name: Copy to ACR cuda${{ matrix.cuda_version }}${{ inputs.override_arch != '' && format(', {0}', inputs.override_arch) || '' }} name: Copy to ACR cuda${{ matrix.cuda_version }}${{ inputs.override_arch != '' && format(', {0}', inputs.override_arch) || '' }}
runs-on: prod-skopeo-v1 runs-on: prod-default-small-v2
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment