Feature: flag for force watching clicks #416
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Decompiler Tests | |
env: | |
BN_SERIAL: ${{ secrets.BN_SERIAL }} | |
BN_LICENSE: ${{ secrets.BN_LICENSE }} | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[test] | |
# taken from https://github.com/mandiant/capa/blob/master/.github/workflows/tests.yml#L107-L147 | |
- name: Install Binary Ninja | |
if: ${{ env.BN_SERIAL != 0 }} | |
run: | | |
mkdir ./.github/binja | |
curl "https://raw.githubusercontent.com/Vector35/binaryninja-api/6812c97/scripts/download_headless.py" -o ./.github/binja/download_headless.py | |
python ./.github/binja/download_headless.py --serial ${{ env.BN_SERIAL }} --output .github/binja/BinaryNinja-headless.zip | |
unzip .github/binja/BinaryNinja-headless.zip -d .github/binja/ | |
python .github/binja/binaryninja/scripts/install_api.py --install-on-root --silent | |
- name: Set up Java 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "oracle" | |
java-version: "17" | |
- name: Install Ghidra | |
uses: er28-0652/setup-ghidra@master | |
with: | |
version: "11.1" | |
- name: Pytest | |
run: | | |
# these two test must be run in separate python environments, due to the way ghidra bridge works | |
# you also must run these tests in the exact order shown here | |
pytest ./tests/test_remote_ghidra.py && pytest ./tests/test_decompilers.py -s |