[ValueError@identity_elimination.py:278] ValueError: There are at least two definitions in the identity group var_58#0 = var_58#0 + (&(var_58#0)), var_58#0. #1348
Workflow file for this run
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
name: Pipeline | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-docker-and-run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup BinaryNinja License | |
run: | | |
echo "${{ secrets.BINJA_LICENSE }}" | base64 --decode > license.txt | |
- name: Download BinayNinja.zip | |
run: | | |
curl -v --header "PRIVATE-TOKEN: ${{ secrets.GITLAB_BINJA_TOKEN }}" https://gitlab.fkie.fraunhofer.de/api/v4/projects/1250/repository/files/BinaryNinja.zip/raw?ref=main --output BinaryNinja.zip | |
- name: Build Docker Image | |
run: | | |
docker build -t dewolf . | |
- name: Run Format Check | |
run: | | |
docker run dewolf make check-format | |
- name: Run Tests | |
run: | | |
docker run dewolf make |