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 11b8857 commit 5af211d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/simeng_benchmarks/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
run: |
cd ${{ inputs.RUN_DIR }}
simeng $GITHUB_WORKSPACE/configs/a64fx.yaml ${{ inputs.BIN_PATH }} 2>&1 tee $GITHUB_WORKSPACE/simeng.tmp
if ! grep -qsE \W*(${{ inputs.PASS_STRING }})\W* $GITHUB_WORKSPACE/simeng.tmp; then
if ! grep -Fxq "${{ inputs.PASS_STRING }}" $GITHUB_WORKSPACE/simeng.tmp; then
echo "Failed"
exit 1
fi
Expand Down

0 comments on commit 5af211d

Please sign in to comment.