Unverified Commit 48cd8a3c authored by Hongtao Zhang's avatar Hongtao Zhang Committed by GitHub
Browse files

CI/CD - Update label in the ROCm image build (#693)



Due to the matrix strategy’s default "fail-fast" setting. In GitHub
Actions, when running a job with a matrix, the individual configurations
run in parallel. By default, if one matrix job (for example, the one
labeled "rocm6_2_rocm6_2_x_superbe") fails, the remaining parallel jobs
are canceled automatically.

In our current build image pipeline, the arm64 build job always are
canceled by the rocm build job. So, using a non-existent label in the
job config to prevent rocm build job from scheduling for a temporary
solution.

---------
Co-authored-by: default avatarhongtaozhang <hongtaozhang@microsoft.com>
parent 5e32859a
...@@ -53,7 +53,7 @@ jobs: ...@@ -53,7 +53,7 @@ jobs:
dockerfile: rocm6.2.x dockerfile: rocm6.2.x
tags: superbench/main:rocm6.2 tags: superbench/main:rocm6.2
platforms: linux/amd64 platforms: linux/amd64
runner: [self-hosted, linux/amd64] runner: [self-hosted, linux/amd64, rocm]
build_args: "NUM_MAKE_JOBS=16" build_args: "NUM_MAKE_JOBS=16"
steps: steps:
- name: Checkout - name: Checkout
......
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