ci: fix can't release cosmovisor (#13618)
* ci: fix can't release cosmovisor * fix tests * update date * update zip
This commit is contained in:
parent
4cf2911f16
commit
3b62a95ad0
|
@ -34,7 +34,7 @@ jobs:
|
|||
# stick to version v0.179.0(https://github.com/cosmos/cosmos-sdk/issues/11125)
|
||||
version: v0.179.0
|
||||
args: release --rm-dist --skip-validate
|
||||
workdir: cosmovisor
|
||||
workdir: tools/cosmovisor
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
GORELEASER_CURRENT_TAG: cosmovisor/${{ env.RELEASE_VERSION }}
|
||||
|
|
|
@ -36,7 +36,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## v1.4.0 2022-10-21
|
||||
## v1.4.0 2022-10-23
|
||||
|
||||
### API Breaking Changes
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ the proposal. Cosmovisor interprets that data to perform an update: switch a cur
|
|||
and restart the App.
|
||||
|
||||
Configuration of Cosmovisor is done through environment variables, which are
|
||||
documented in: https://github.com/cosmos/cosmos-sdk/tree/main/cosmovisor/README.md`,
|
||||
documented in: https://github.com/cosmos/cosmos-sdk/tree/main/tools/cosmovisor/README.md`,
|
||||
cosmovisor.EnvName, cosmovisor.EnvHome,
|
||||
)
|
||||
}
|
||||
|
|
|
@ -92,7 +92,7 @@ func (s *HelpTestSuite) TestGetHelpText() {
|
|||
expectedPieces := []string{
|
||||
"Cosmovisor",
|
||||
cosmovisor.EnvName, cosmovisor.EnvHome,
|
||||
"https://github.com/cosmos/cosmos-sdk/tree/main/cosmovisor/README.md",
|
||||
"https://github.com/cosmos/cosmos-sdk/tree/main/tools/cosmovisor/README.md",
|
||||
}
|
||||
|
||||
actual := GetHelpText()
|
||||
|
|
|
@ -6,7 +6,7 @@ echo 'ERROR: UPGRADE "chain2" NEEDED at height: 49: zip_binary'
|
|||
|
||||
# create upgrade info
|
||||
# this info contains directly information about binaries (in chain2->chain3 update we test with info containing a link to the file with an address for the new chain binary)
|
||||
echo '{"name":"chain2","height":49,"info":"{\"binaries\":{\"linux/amd64\":\"https://github.com/cosmos/cosmos-sdk/raw/main/cosmovisor/testdata/repo/chain2-zip_bin/autod.zip?checksum=sha256:b30cf0b1a3e46ac9587cc4d7b102eb796e39e3e0dfa3f8ca6e163fc1b1e913ca\"}}"}' >$3
|
||||
echo '{"name":"chain2","height":49,"info":"{\"binaries\":{\"linux/amd64\":\"https://github.com/cosmos/cosmos-sdk/raw/main/tools/cosmovisor/testdata/repo/chain2-zip_bin/autod.zip?checksum=sha256:b30cf0b1a3e46ac9587cc4d7b102eb796e39e3e0dfa3f8ca6e163fc1b1e913ca\"}}"}' >$3
|
||||
|
||||
sleep 0.1
|
||||
echo Never should be printed!!!
|
||||
|
|
|
@ -6,8 +6,8 @@ echo Args: $@
|
|||
echo 'ERROR: UPGRADE "chain3" NEEDED at height: 936: ref_to_chain3-zip_dir.json module=main'
|
||||
|
||||
# this update info doesn't contain binaries, instead it is a reference for further download instructions.
|
||||
# echo '{"name":"chain3","height":936,"info":"{\"binaries\":{\"linux/amd64\":\"https://github.com/cosmos/cosmos-sdk/raw/main/cosmovisor/testdata/repo/ref_to_chain3-zip_dir.json\"}}"}' > $3
|
||||
echo '{"name":"chain3","height":936,"info":"https://github.com/cosmos/cosmos-sdk/raw/main/cosmovisor/testdata/repo/ref_to_chain3-zip_dir.json"}' >$3
|
||||
# echo '{"name":"chain3","height":936,"info":"{\"binaries\":{\"linux/amd64\":\"https://github.com/cosmos/cosmos-sdk/raw/main/tools/cosmovisor/testdata/repo/ref_to_chain3-zip_dir.json\"}}"}' > $3
|
||||
echo '{"name":"chain3","height":936,"info":"https://github.com/cosmos/cosmos-sdk/raw/main/tools/cosmovisor/testdata/repo/ref_to_chain3-zip_dir.json"}' >$3
|
||||
|
||||
sleep 1
|
||||
echo 'Do not print'
|
||||
|
|
Binary file not shown.
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"binaries": {
|
||||
"linux/amd64": "https://github.com/cosmos/cosmos-sdk/raw/main/cosmovisor/testdata/repo/chain3-zip_dir/autod.zip?checksum=sha256:8951f52a0aea8617de0ae459a20daf704c29d259c425e60d520e363df0f166b4"
|
||||
"linux/amd64": "https://github.com/cosmos/cosmos-sdk/raw/main/tools/cosmovisor/testdata/repo/chain3-zip_dir/autod.zip?checksum=sha256:8951f52a0aea8617de0ae459a20daf704c29d259c425e60d520e363df0f166b4"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -155,7 +155,7 @@ func (s *upgradeTestSuite) TestGetDownloadURL() {
|
|||
},
|
||||
"follow reference": {
|
||||
info: ref,
|
||||
url: "https://github.com/cosmos/cosmos-sdk/raw/main/cosmovisor/testdata/repo/chain3-zip_dir/autod.zip?checksum=sha256:8951f52a0aea8617de0ae459a20daf704c29d259c425e60d520e363df0f166b4",
|
||||
url: "https://github.com/cosmos/cosmos-sdk/raw/main/tools/cosmovisor/testdata/repo/chain3-zip_dir/autod.zip?checksum=sha256:8951f52a0aea8617de0ae459a20daf704c29d259c425e60d520e363df0f166b4",
|
||||
},
|
||||
"malformated reference target": {
|
||||
info: badref,
|
||||
|
|
Loading…
Reference in New Issue