ternary won't work
This commit is contained in:
parent
f006b5ca5e
commit
c4ae6c1cc9
1 changed files with 9 additions and 3 deletions
12
.github/workflows/bench.yml
vendored
12
.github/workflows/bench.yml
vendored
|
@ -54,13 +54,19 @@ jobs:
|
|||
|
||||
if: |
|
||||
github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3'
|
||||
|| (github.event.schedule && github.repository_owner == 'ggerganov')
|
||||
|| (
|
||||
github.event.schedule
|
||||
&& github.repository_owner == 'ggerganov')
|
||||
|| github.event.pull_request
|
||||
|| github.head_ref == 'master'
|
||||
|| (
|
||||
github.event.push
|
||||
&& (github.event.push.ref == 'refs/heads/master' && github.repository_owner == 'ggerganov')
|
||||
|| github.ref_name == 'master'
|
||||
&& github.event.push.ref == 'refs/heads/master'
|
||||
&& github.repository_owner == 'ggerganov'
|
||||
)
|
||||
|| (
|
||||
!github.event.push
|
||||
&& github.ref_name == 'master'
|
||||
)
|
||||
steps:
|
||||
- name: Clone
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue