diff options
author | chriseth <chris@ethereum.org> | 2017-06-09 23:17:41 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-06-15 00:59:23 +0800 |
commit | a87b22c1229f9f5bec8dafd43d42365c7459a7c7 (patch) | |
tree | 28d304284da7dab999ac660f9be64ae7944460d1 | |
parent | f008ddf83646f6002a61a123cc94ad195a35dce4 (diff) | |
download | dexon-solidity-a87b22c1229f9f5bec8dafd43d42365c7459a7c7.tar dexon-solidity-a87b22c1229f9f5bec8dafd43d42365c7459a7c7.tar.gz dexon-solidity-a87b22c1229f9f5bec8dafd43d42365c7459a7c7.tar.bz2 dexon-solidity-a87b22c1229f9f5bec8dafd43d42365c7459a7c7.tar.lz dexon-solidity-a87b22c1229f9f5bec8dafd43d42365c7459a7c7.tar.xz dexon-solidity-a87b22c1229f9f5bec8dafd43d42365c7459a7c7.tar.zst dexon-solidity-a87b22c1229f9f5bec8dafd43d42365c7459a7c7.zip |
Change windows CI to use the same bytecode directory as linux.
-rw-r--r-- | appveyor.yml | 3 | ||||
-rw-r--r-- | scripts/bytecodecompare/storebytecode.bat | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml index 22ec30a0..55c80a21 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -65,7 +65,8 @@ build_script: - msbuild solidity.sln /p:Configuration=%CONFIGURATION% /m:%NUMBER_OF_PROCESSORS% /v:minimal - cd %APPVEYOR_BUILD_FOLDER% - scripts\release.bat %CONFIGURATION% - - scripts\bytecodecompare\storebytecode.bat %CONFIGURATION% %APPVEYOR_REPO_COMMIT% + - ps: $bytecodedir = git show -s --format="%cd-%H" --date=short + - ps: scripts\bytecodecompare\storebytecode.bat $Env:CONFIGURATION $bytecodedir test_script: - cd %APPVEYOR_BUILD_FOLDER% diff --git a/scripts/bytecodecompare/storebytecode.bat b/scripts/bytecodecompare/storebytecode.bat index 969a42a4..aa829d20 100644 --- a/scripts/bytecodecompare/storebytecode.bat +++ b/scripts/bytecodecompare/storebytecode.bat @@ -20,7 +20,7 @@ REM Copyright (c) 2017 solidity contributors. REM --------------------------------------------------------------------------- set CONFIGURATION=%1 -set COMMIT=%2 +set DIRECTORY=%2 mkdir bytecode cd bytecode @@ -33,8 +33,8 @@ git config user.name "travis" git config user.email "chris@ethereum.org" git clean -f -d -x -mkdir %COMMIT% -set REPORT=%COMMIT%/windows.txt +if not exist %DIRECTORY% mkdir %DIRECTORY% +set REPORT=%DIRECTORY%/windows.txt cp ../report.txt %REPORT% git add %REPORT% git commit -a -m "Added report." |