Skip to content

Commit

Permalink
ci: bench: fix master not schedule, fix commit status failed on exter…
Browse files Browse the repository at this point in the history
…nal repo
  • Loading branch information
phymbert committed Mar 28, 2024
1 parent cfc4d75 commit 7824ff4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/bench.yml
Expand Up @@ -42,7 +42,7 @@ jobs:
RUNNER_LABEL: Standard_NC4as_T4_v3 # FIXME Do not find a way to not duplicate it
N_USERS: 8
DURATION: 10m
if: ${{ github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3' || github.event.schedule || github.event.pull_request || github.event.push.ref == 'refs/heads/master' }}
if: ${{ github.event.inputs.gpu-series == 'Standard_NC4as_T4_v3' || github.event.schedule || github.event.pull_request || github.head_ref == 'master' || github.ref_name == 'master' || github.event.push.ref == 'refs/heads/master' }}
steps:
- name: Clone
id: checkout
Expand Down Expand Up @@ -143,6 +143,7 @@ jobs:
- name: Commit status
uses: Sibz/github-status-action@v1
continue-on-error: true # Important as it looks unstable: 503
with:
authToken: ${{secrets.GITHUB_TOKEN}}
sha: ${{ inputs.sha || github.event.pull_request.head.sha || github.sha }}
Expand Down

0 comments on commit 7824ff4

Please sign in to comment.