aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/bytecodecompare/storebytecode.bat
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-03-23 03:19:57 +0800
committerchriseth <chris@ethereum.org>2017-03-23 16:56:18 +0800
commitbbe3557a2fda2f4a09b63b1f3e501d4c8625bfe1 (patch)
treec1744f3b0bf74ddcb13e7e206699448d8d861344 /scripts/bytecodecompare/storebytecode.bat
parentb18aea315d2e5c12ff6aa7cbf24d559e0523e778 (diff)
downloaddexon-solidity-bbe3557a2fda2f4a09b63b1f3e501d4c8625bfe1.tar
dexon-solidity-bbe3557a2fda2f4a09b63b1f3e501d4c8625bfe1.tar.gz
dexon-solidity-bbe3557a2fda2f4a09b63b1f3e501d4c8625bfe1.tar.bz2
dexon-solidity-bbe3557a2fda2f4a09b63b1f3e501d4c8625bfe1.tar.lz
dexon-solidity-bbe3557a2fda2f4a09b63b1f3e501d4c8625bfe1.tar.xz
dexon-solidity-bbe3557a2fda2f4a09b63b1f3e501d4c8625bfe1.tar.zst
dexon-solidity-bbe3557a2fda2f4a09b63b1f3e501d4c8625bfe1.zip
Create bytecode for all tests and push to remote repo.
Diffstat (limited to 'scripts/bytecodecompare/storebytecode.bat')
-rw-r--r--scripts/bytecodecompare/storebytecode.bat41
1 files changed, 41 insertions, 0 deletions
diff --git a/scripts/bytecodecompare/storebytecode.bat b/scripts/bytecodecompare/storebytecode.bat
new file mode 100644
index 00000000..969a42a4
--- /dev/null
+++ b/scripts/bytecodecompare/storebytecode.bat
@@ -0,0 +1,41 @@
+@ECHO OFF
+
+REM ---------------------------------------------------------------------------
+REM This file is part of solidity.
+REM
+REM solidity is free software: you can redistribute it and/or modify
+REM it under the terms of the GNU General Public License as published by
+REM the Free Software Foundation, either version 3 of the License, or
+REM (at your option) any later version.
+REM
+REM solidity is distributed in the hope that it will be useful,
+REM but WITHOUT ANY WARRANTY; without even the implied warranty of
+REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+REM GNU General Public License for more details.
+REM
+REM You should have received a copy of the GNU General Public License
+REM along with solidity. If not, see <http://www.gnu.org/licenses/>
+REM
+REM Copyright (c) 2017 solidity contributors.
+REM ---------------------------------------------------------------------------
+
+set CONFIGURATION=%1
+set COMMIT=%2
+
+mkdir bytecode
+cd bytecode
+..\scripts\isolate_tests.py ..\test\
+..\scripts\bytecodecompare\prepare_report.py ..\build\solc\%CONFIGURATION%\solc.exe
+
+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
+
+mkdir %COMMIT%
+set REPORT=%COMMIT%/windows.txt
+cp ../report.txt %REPORT%
+git add %REPORT%
+git commit -a -m "Added report."
+git push origin