Skip to content

Commit

Permalink
Install conan on fuzzer execution machine
Browse files Browse the repository at this point in the history
  • Loading branch information
JacekGlen committed Nov 4, 2024
1 parent d3faeb5 commit 32b41a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/fuzzer-common-steps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ runs:

- name: Temporary step - conan cache cleanup - to be executed only once per runner
shell: bash
run: conan remove "*" --force
run: |
pip3 install --user conan==1.64.1
conan remove "*" --force
- name: Preinstall Conan packages
shell: bash
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/rpc-fuzzer-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # Runs every Sunday at 00:00 AM UTC
push:
branches:
- fuzzer-oom-issue-fix-2

jobs:
fuzzer-test-address-sanitizer:
Expand Down

0 comments on commit 32b41a0

Please sign in to comment.