diff options
| author | MarcoFalke <[email protected]> | 2020-07-21 09:48:12 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-07-21 10:11:39 +0200 |
| commit | ea595d39f7e782f53cd9403260c6c1d759d4a61a (patch) | |
| tree | 9b233dc19396f3adab0d555d402049cb88249f0c /ci | |
| parent | Merge #16878: Fix non-deterministic coverage of test DoS_mapOrphans (diff) | |
| parent | Remove previous_release.sh (diff) | |
| download | discoin-ea595d39f7e782f53cd9403260c6c1d759d4a61a.tar.xz discoin-ea595d39f7e782f53cd9403260c6c1d759d4a61a.zip | |
Merge #19205: script: previous_release.sh rewritten in python
9c34aff39309b8adc99d347e07b6ddb5366498e9 Remove previous_release.sh (Brian Liotti)
e1e5960e10a9329d9f55a3967d546ffbdd896030 script: Add previous_release.py (Brian Liotti)
Pull request description:
Closes #18132
Added functionality:
1) checks file hash before untarring when using the binary download option
ACKs for top commit:
fjahr:
re-ACK 9c34aff39309b8adc99d347e07b6ddb5366498e9
Sjors:
tACK 9c34aff39309b8adc99d347e07b6ddb5366498e9
Tree-SHA512: 323f11828736a372a47f048592de8b027ddcd75b38f312dfc73f7b495d1e078bfeb384d9cdf434b3e70f2c6c0ce2da2df48e9a6460ac0e1967c6829a411c52d5
Diffstat (limited to 'ci')
| -rwxr-xr-x | ci/test/05_before_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/05_before_script.sh b/ci/test/05_before_script.sh index 057395eba..131ea2167 100755 --- a/ci/test/05_before_script.sh +++ b/ci/test/05_before_script.sh @@ -48,6 +48,6 @@ if [ -z "$NO_DEPENDS" ]; then fi if [ -n "$PREVIOUS_RELEASES_TO_DOWNLOAD" ]; then BEGIN_FOLD previous-versions - DOCKER_EXEC contrib/devtools/previous_release.sh -b -t "$PREVIOUS_RELEASES_DIR" "${PREVIOUS_RELEASES_TO_DOWNLOAD}" + DOCKER_EXEC contrib/devtools/previous_release.py -b -t "$PREVIOUS_RELEASES_DIR" "${PREVIOUS_RELEASES_TO_DOWNLOAD}" END_FOLD fi |