Skip to content

Commit 7e06657

Browse files
authored
Merge pull request #13155 from ethereum/fix-naming-in-binary-collector-job
Fix naming for the release binary collector job
2 parents 1fa3545 + 51e0ae5 commit 7e06657

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1529,10 +1529,10 @@ jobs:
15291529
15301530
mkdir -p solc-bin/{linux-amd64,macosx-amd64,windows-amd64,bin}
15311531
1532-
mv github/solc-static-linux "solc-bin/linux-amd64/solc-linux-amd64-${full_version}"
1533-
mv github/solc-macos "solc-bin/macosx-amd64/solc-macosx-amd64-${full_version}"
1534-
mv github/solc-windows.exe "solc-bin/windows-amd64/solc-windows-amd64-${full_version}.exe"
1535-
mv github/soljson.js "solc-bin/bin/soljson-${full_version}.js"
1532+
mv github/solc-static-linux "solc-bin/linux-amd64/solc-linux-amd64-v${full_version}"
1533+
mv github/solc-macos "solc-bin/macosx-amd64/solc-macosx-amd64-v${full_version}"
1534+
mv github/solc-windows.exe "solc-bin/windows-amd64/solc-windows-amd64-v${full_version}.exe"
1535+
mv github/soljson.js "solc-bin/bin/soljson-v${full_version}.js"
15361536
15371537
cd solc-bin/
15381538
tar --create --file ../solc-bin-binaries.tar *

ReleaseChecklist.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
- [ ] Create the ``prerelease.txt`` file: (``echo -n > prerelease.txt``).
3232
- [ ] Run ``scripts/create_source_tarball.sh`` while being on the tag to create the source tarball. This will create the tarball in a directory called ``upload``.
3333
- [ ] Take the tarball from the upload directory (its name should be ``solidity_x.x.x.tar.gz``, otherwise ``prerelease.txt`` was missing in the step before) and upload the source tarball to the release page.
34-
- [ ] Take the ``github-binaries.tar`` tarball from ``b_release_binaries`` run of the tagged commit in circle-ci and add all binaries from it to the release page.
34+
- [ ] Take the ``github-binaries.tar`` tarball from ``c_release_binaries`` run of the tagged commit in circle-ci and add all binaries from it to the release page.
3535
Make sure it contains four binaries: ``solc-windows.exe``, ``solc-macos``, ``solc-static-linux`` and ``soljson.js``.
36-
- [ ] Take the ``solc-bin-binaries.tar`` tarball from ``b_release_binaries`` run of the tagged commit in circle-ci and add all binaries from it to solc-bin.
36+
- [ ] Take the ``solc-bin-binaries.tar`` tarball from ``c_release_binaries`` run of the tagged commit in circle-ci and add all binaries from it to solc-bin.
3737
- [ ] Run ``./update --reuse-hashes`` in ``solc-bin`` and verify that the script has updated ``list.js``, ``list.txt`` and ``list.json`` files correctly and that symlinks to the new release have been added in ``solc-bin/wasm/`` and ``solc-bin/emscripten-wasm32/``.
3838
- [ ] Create a pull request in solc-bin and merge.
3939

0 commit comments

Comments
 (0)