forked from ethereum/solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change windows CI to use the same bytecode directory as linux.
- Loading branch information
Showing
2 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 "[email protected]" | ||
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." | ||
|