#!/usr/bin/env bash ### Test Dapp integration # work around having two python versions loading libraries from each other in CI OLD_LD_LIBRARY_PATH="$LD_LIBRARY_PATH" alias crytic-compile='LD_LIBRARY_PATH=$OLD_LD_LIBRARY_PATH crytic-compile' unset LD_LIBRARY_PATH mkdir test_dapp cd test_dapp || exit 255 # The dapp init process makes a temporary local git repo and needs certain values to be set git config --global user.email "ci@trailofbits.com" git config --global user.name "CI User" which nix-env || exit 255 git clone --recursive https://github.com/dapphub/dapptools "$HOME/.dapp/dapptools" nix-env -f "$HOME/.dapp/dapptools" -iA dapp seth solc hevm ethsign dapp init if ! slither . --detect external-function; then echo "Dapp test failed" exit 1 fi exit 0