Skip to content
Snippets Groups Projects
Commit fe5785bb authored by Yaroslav Lobankov's avatar Yaroslav Lobankov Committed by Yaroslav Lobankov
Browse files

ci: fix sending failure message for fuzzing

Call the `checkout` action with the `path` param to avoid the following
error:

  Error: File was unable to be removed Error: EACCES: permission denied,
  unlink '/home/runner/work/tarantool/tarantool/build-out/csv_fuzzer'

NO_DOC=ci
NO_TEST=ci
NO_CHANGELOG=ci
parent 7148004f
No related branches found
No related tags found
No related merge requests found
......@@ -68,10 +68,13 @@ jobs:
dry-run: false
sanitizer: ${{ matrix.sanitizer }}
- uses: actions/checkout@v3
id: checkout
if: failure()
with:
path: tarantool
- name: Send VK Teams message on failure
if: failure()
uses: ./.github/actions/report-job-status
if: failure() && steps.checkout.outcome == 'success'
uses: ./tarantool/.github/actions/report-job-status
with:
bot-token: ${{ secrets.VKTEAMS_BOT_TOKEN }}
- name: upload crash
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment