Checkout testbins and fuzztargets with token
This commit is contained in:
parent
e83099caee
commit
f8e67549b0
1 changed files with 9 additions and 1 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
|
@ -129,8 +129,16 @@ jobs:
|
|||
if: matrix.enabled
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: radareorg/radare2-testbins
|
||||
repository: rizinorg/rizin-testbins
|
||||
token: ${{ secrets.RIZIN_TOKEN }} # TODO: remove when the repo is public
|
||||
path: test/bins
|
||||
- name: Checkout fuzz targets # TODO: this can be removed as soon as the fuzztargets repo is public
|
||||
if: matrix.run_tests && matrix.enabled && (github.event_name != 'pull_request' || contains(github.event.pull_request.head.ref, 'fuzz'))
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: rizinorg/rizin-fuzztargets
|
||||
token: ${{ secrets.RIZIN_TOKEN }}
|
||||
path: test/fuzz/targets
|
||||
- name: Configure with ACR and build
|
||||
if: matrix.build_system == 'acr' && matrix.enabled
|
||||
run: ./configure --prefix=${HOME} && make
|
||||
|
|
|
|||
Loading…
Reference in a new issue