Skip to content

Commit

Permalink
Fixed restarting
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Oct 21, 2024
1 parent 1d6d1ea commit 3fe13bf
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/actions/benchexec-report/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ runs:
then printf "\n| $task | " >> $GITHUB_OUTPUT
fi
lasttask="$task"
printf " $emoji ($correct / $incorrect / $all) [HTML](https://theta.mit.bme.hu/benchmark-results/${{ github.head_ref }}/$i/$(ls *.html))/[CSV](https://theta.mit.bme.hu/benchmark-results/${{ github.head_ref }}/$i/$(ls *.csv)) | " >> $GITHUB_OUTPUT
printf " $emoji ($correct / $incorrect / $all) [HTML](https://theta.mit.bme.hu/benchmark-results/${{ github.ref }}/$i/$(ls *.html))/[CSV](https://theta.mit.bme.hu/benchmark-results/${{ github.ref }}/$i/$(ls *.csv)) | " >> $GITHUB_OUTPUT
popd
else
rm -rf $i
Expand All @@ -68,7 +68,7 @@ runs:
with:
branch: gh-pages
folder: artifacts
target-folder: benchmark-results/${{ github.head_ref }}/
target-folder: benchmark-results/${{ github.ref }}/
single-commit: true
- name: Comment on PR
if: github.event_name == 'pull_request'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-copyright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
permissions: write-all

concurrency:
group: copyright-${{ github.head_ref }}
group: copyright-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
permissions: write-all

concurrency:
group: formatting-${{ github.head_ref }}
group: formatting-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [opened, synchronize, reopened]

concurrency:
group: version-${{ github.head_ref }}
group: version-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
permissions: write-all

concurrency:
group: deploy-${{ github.head_ref }}-${{ github.event_name }}
group: deploy-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
permissions: write-all

concurrency:
group: mac-${{ github.head_ref }}
group: mac-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
permissions: read-all

concurrency:
group: sonar-${{ github.head_ref }}
group: sonar-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/win-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
permissions: write-all

concurrency:
group: win-${{ github.head_ref }}
group: win-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit 3fe13bf

Please sign in to comment.