Skip to content

Commit

Permalink
Merge pull request #64 from LedgerHQ/fbe/fix_setup_script_in_ragger_r…
Browse files Browse the repository at this point in the history
…eusable_workflows

Fix setup_script.sh detection in ragger reusable workflow
  • Loading branch information
fbeutin-ledger authored Mar 12, 2024
2 parents 264afdf + f7cd7d3 commit 73afaaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable_ragger_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
sudo apt-get update && sudo apt-get install -y qemu-user-static tesseract-ocr libtesseract-dev
pip install -U pip setuptools
pip install -r "${{ needs.call_get_app_metadata.outputs.pytest_directory }}/requirements.txt"
[[ -f ${{ needs.call_get_app_metadata.outputs.pytest_directory}}/setup_script.sh ]] && ./${{ needs.call_get_app_metadata.outputs.pytest_directory }}/setup_script.sh
if [[ -f ${{ needs.call_get_app_metadata.outputs.pytest_directory }}/setup_script.sh ]]; then ./${{ needs.call_get_app_metadata.outputs.pytest_directory }}/setup_script.sh; fi
- name: Run test
env:
Expand Down

0 comments on commit 73afaaa

Please sign in to comment.