Skip to content

Commit ea08ab5

Browse files
committed
[FIXUP] Fix artifact locations
1 parent e5e7320 commit ea08ab5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -907,9 +907,9 @@ jobs:
907907
- run: cd test-cases && ../scripts/bytecodecompare/prepare_report.py ../build/solc/solc --interface standard-json && mv -v report.txt ../bytecode-report-ubuntu-json.txt
908908
- run: cd test-cases && ../scripts/bytecodecompare/prepare_report.py ../build/solc/solc --interface cli && mv -v report.txt ../bytecode-report-ubuntu-cli.txt
909909
- store_artifacts:
910-
path: report-json.txt
910+
path: bytecode-report-ubuntu-json.txt
911911
- store_artifacts:
912-
path: report-cli.txt
912+
path: bytecode-report-ubuntu-cli.txt
913913
- persist_to_workspace:
914914
root: .
915915
paths:
@@ -930,9 +930,9 @@ jobs:
930930
- run: cd test-cases && ../scripts/bytecodecompare/prepare_report.py ../build/solc/solc --interface standard-json && mv -v report.txt ../bytecode-report-osx-json.txt
931931
- run: cd test-cases && ../scripts/bytecodecompare/prepare_report.py ../build/solc/solc --interface cli && mv -v report.txt ../bytecode-report-osx-cli.txt
932932
- store_artifacts:
933-
path: report-json.txt
933+
path: bytecode-report-osx-json.txt
934934
- store_artifacts:
935-
path: report-cli.txt
935+
path: bytecode-report-osx-cli.txt
936936
- persist_to_workspace:
937937
root: .
938938
paths:
@@ -952,9 +952,9 @@ jobs:
952952
- run: cd test-cases\ && python ..\scripts\bytecodecompare\prepare_report.py ..\build\solc\Release\solc.exe --interface standard-json && move report.txt ..\bytecode-report-windows-json.txt
953953
- run: cd test-cases\ && python ..\scripts\bytecodecompare\prepare_report.py ..\build\solc\Release\solc.exe --interface cli && move report.txt ..\bytecode-report-windows-cli.txt
954954
- store_artifacts:
955-
path: report-json.txt
955+
path: bytecode-report-windows-json.txt
956956
- store_artifacts:
957-
path: report-cli.txt
957+
path: bytecode-report-windows-cli.txt
958958
- persist_to_workspace:
959959
root: .
960960
paths:
@@ -970,9 +970,9 @@ jobs:
970970
- checkout
971971
- attach_workspace:
972972
at: emscripten_build/libsolc
973-
- run: scripts/bytecodecompare/storebytecode.sh && cp -v report.txt bytecode-report-emscripten.txt
973+
- run: scripts/bytecodecompare/storebytecode.sh && mv -v report.txt bytecode-report-emscripten.txt
974974
- store_artifacts:
975-
path: report.txt
975+
path: bytecode-report-emscripten.txt
976976
- persist_to_workspace:
977977
root: .
978978
paths:

0 commit comments

Comments
 (0)