Skip to content

Commit

Permalink
array
Browse files Browse the repository at this point in the history
  • Loading branch information
rengolin committed Feb 10, 2025
1 parent 83cdb3b commit 4bb98b5
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/tpp-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
Check_LLVM:
if: ${{ github.event_name }} == "push" || \
(${{ github.event_name }} == "pull_request" && \
(contains(github.event.pull_request.labels.*.name, 'quick-benchmark') || \
contains(github.event.pull_request.labels.*.name, 'full-benchmark')))
(contains(github.event.pull_request.labels, 'quick-benchmark') || \
contains(github.event.pull_request.labels, 'full-benchmark')))
uses: ./.github/workflows/tpp-llvm.yml
secrets: inherit

Expand All @@ -37,8 +37,8 @@ jobs:
if: ${{ github.event_name }} == "push" || \
${{ inputs.RUN_EMR_BENCH }} == 1 || \
(${{ github.event_name }} == "pull_request" && \
(contains(github.event.pull_request.labels.*.name, 'quick-benchmark') || \
contains(github.event.pull_request.labels.*.name, 'full-benchmark')))
(contains(github.event.pull_request.labels, 'quick-benchmark') || \
contains(github.event.pull_request.labels, 'full-benchmark')))
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
Expand All @@ -54,8 +54,8 @@ jobs:
if: ${{ github.event_name }} == "push" || \
${{ inputs.RUN_EMR_BENCH }} == 1 || \
(${{ github.event_name }} == "pull_request" && \
(contains(github.event.pull_request.labels.*.name, 'quick-benchmark') || \
contains(github.event.pull_request.labels.*.name, 'full-benchmark')))
(contains(github.event.pull_request.labels, 'quick-benchmark') || \
contains(github.event.pull_request.labels, 'full-benchmark')))
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
Expand All @@ -71,7 +71,7 @@ jobs:
if: ${{ github.event_name }} == "push" || \
${{ inputs.RUN_ZEN_BENCH }} == 1 || \
(${{ github.event_name }} == "pull_request" && \
contains(github.event.pull_request.labels.*.name, 'full-benchmark'))
contains(github.event.pull_request.labels, 'full-benchmark'))
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
Expand All @@ -87,7 +87,7 @@ jobs:
if: ${{ github.event_name }} == "push" || \
${{ inputs.RUN_ZEN_BENCH }} == 1 || \
(${{ github.event_name }} == "pull_request" && \
contains(github.event.pull_request.labels.*.name, 'full-benchmark'))
contains(github.event.pull_request.labels, 'full-benchmark'))
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
Expand All @@ -103,7 +103,7 @@ jobs:
if: ${{ github.event_name }} == "push" || \
${{ inputs.RUN_CLX_BENCH }} == 1 || \
(${{ github.event_name }} == "pull_request" && \
contains(github.event.pull_request.labels.*.name, 'full-benchmark'))
contains(github.event.pull_request.labels, 'full-benchmark'))
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
Expand All @@ -119,7 +119,7 @@ jobs:
if: ${{ github.event_name }} == "push" || \
${{ inputs.RUN_CLX_BENCH }} == 1 || \
(${{ github.event_name }} == "pull_request" && \
contains(github.event.pull_request.labels.*.name, 'full-benchmark'))
contains(github.event.pull_request.labels, 'full-benchmark'))
needs: Check_LLVM
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 4bb98b5

Please sign in to comment.