#!/usr/bin/env bash #------------------------------------------------------------------------------ # Script used for cross-platform comparison as part of the travis automation. # Splits all test source code into multiple files, generates bytecode and # uploads the bytecode into github.com/ethereum/solidity-test-bytecode where # another travis job is triggered to do the actual comparison. # # ------------------------------------------------------------------------------ # This file is part of solidity. # # solidity is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # solidity is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with solidity. If not, see # # (c) 2017 solidity contributors. #------------------------------------------------------------------------------ set -e REPO_ROOT="$(dirname "$0")"/../.. echo "Compiling all test contracts into bytecode..." TMPDIR=$(mktemp -d) ( cd "$REPO_ROOT" REPO_ROOT=$(pwd) # make it absolute echo "Running for commit $TRAVIS_COMMIT" COMMIT_DATE=$(git show -s --format="%cd" --date=short "$TRAVIS_COMMIT") cd "$TMPDIR" "$REPO_ROOT"/scripts/isolate_tests.py "$REPO_ROOT"/test/ if [[ "$SOLC_EMSCRIPTEN" = "On" ]] then cp "$REPO_ROOT/build/solc/soljson.js" . npm install solc cat > solc < report.txt else $REPO_ROOT/scripts/bytecodecompare/prepare_report.py $REPO_ROOT/build/solc/solc fi if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ] then openssl aes-256-cbc -K $encrypted_60701c962b9c_key -iv $encrypted_60701c962b9c_iv -in "$REPO_ROOT"/scripts/bytecodecompare/deploy_key.enc -out deploy_key -d chmod 600 deploy_key eval `ssh-agent -s` ssh-add deploy_key git clone --depth 2 git@github.com:ethereum/solidity-test-bytecode.git cd solidity-test-bytecode git config user.name "travis" git config user.email "chris@ethereum.org" git clean -f -d -x DIRECTORY=$COMMIT_DATE"_"$TRAVIS_COMMIT mkdir -p "$DIRECTORY" REPORT="$DIRECTORY/$ZIP_SUFFIX.txt" cp ../report.txt "$REPORT" # Only push if adding actually worked, i.e. there were changes. if git add "$REPORT" then git commit -a -m "Added report $REPORT" git pull --rebase git push origin else echo "Adding report failed, it might already exist in the repository." fi fi ) rm -rf "$TMPDIR"