"git@developer.sourcefind.cn:orangecat/ollama.git" did not exist on "b55958a587b81c53b03697bb759385aabb3053c4"
Unverified Commit 7a757bb6 authored by Yih-Dar's avatar Yih-Dar Committed by GitHub
Browse files

Fix AMD Push CI not triggered (#27732)



* fix

* fix

---------
Co-authored-by: default avatarydshieh <ydshieh@users.noreply.github.com>
parent 2ca73e5e
...@@ -18,7 +18,7 @@ on: ...@@ -18,7 +18,7 @@ on:
jobs: jobs:
run_amd_ci: run_amd_ci:
name: AMD mi210 name: AMD mi210
if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_push_ci_caller'))) if: (cancelled() != true) && ((github.event_name == 'push') && (github.ref_name == 'main' || startsWith(github.ref_name, 'run_amd_push_ci_caller')))
uses: ./.github/workflows/self-push-amd.yml uses: ./.github/workflows/self-push-amd.yml
with: with:
gpu_flavor: mi210 gpu_flavor: mi210
......
...@@ -18,7 +18,7 @@ on: ...@@ -18,7 +18,7 @@ on:
jobs: jobs:
run_amd_ci: run_amd_ci:
name: AMD mi250 name: AMD mi250
if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_push_ci_caller'))) if: (cancelled() != true) && ((github.event_name == 'push') && (github.ref_name == 'main' || startsWith(github.ref_name, 'run_amd_push_ci_caller')))
uses: ./.github/workflows/self-push-amd.yml uses: ./.github/workflows/self-push-amd.yml
with: with:
gpu_flavor: mi250 gpu_flavor: mi250
......
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