Skip to content

Commit

Permalink
Playing with benchmarks script
Browse files Browse the repository at this point in the history
  • Loading branch information
ABenC377 committed Oct 24, 2024
1 parent c9de93c commit d4ee65a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/actions/simeng_benchmarks/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ runs:
run: |
cd ${{ inputs.RUN_DIR }}
simeng $GITHUB_WORKSPACE/configs/a64fx.yaml ${{ inputs.BIN_PATH }} 2>&1 tee $GITHUB_WORKSPACE/simeng.tmp
STRING_FOUND=$(grep -s ${{ inputs.PASS_STRING }} $GITHUB_WORKSPACE/simeng.tmp)
if $STRING_FOUND; then
if (grep -s ${{ inputs.PASS_STRING }} $GITHUB_WORKSPACE/simeng.tmp); then
echo "Passed"
else
echo "Failed"
Expand Down

0 comments on commit d4ee65a

Please sign in to comment.