Makefile: Refill GAS with a single command in env-up
Some checks failed
DCO action / DCO (pull_request) Failing after 3m27s
Vulncheck / Vulncheck (pull_request) Successful in 3m50s
Pre-commit hooks / Pre-commit (pull_request) Successful in 4m14s
Tests and linters / Run gofumpt (pull_request) Successful in 4m12s
Build / Build Components (pull_request) Successful in 5m9s
Tests and linters / Staticcheck (pull_request) Successful in 5m5s
Tests and linters / gopls check (pull_request) Successful in 5m14s
Tests and linters / Lint (pull_request) Successful in 5m39s
Tests and linters / Tests (pull_request) Successful in 5m44s
Tests and linters / Tests with -race (pull_request) Successful in 5m47s
Some checks failed
DCO action / DCO (pull_request) Failing after 3m27s
Vulncheck / Vulncheck (pull_request) Successful in 3m50s
Pre-commit hooks / Pre-commit (pull_request) Successful in 4m14s
Tests and linters / Run gofumpt (pull_request) Successful in 4m12s
Build / Build Components (pull_request) Successful in 5m9s
Tests and linters / Staticcheck (pull_request) Successful in 5m5s
Tests and linters / gopls check (pull_request) Successful in 5m14s
Tests and linters / Lint (pull_request) Successful in 5m39s
Tests and linters / Tests (pull_request) Successful in 5m44s
Tests and linters / Tests with -race (pull_request) Successful in 5m47s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
6b0d8871cc
commit
d790b32446
1 changed files with 6 additions and 4 deletions
10
Makefile
10
Makefile
|
@ -270,10 +270,12 @@ env-up: all
|
|||
echo "Frostfs contracts not found"; exit 1; \
|
||||
fi
|
||||
${BIN}/frostfs-adm --config ./dev/adm/frostfs-adm.yml morph init --contracts ${FROSTFS_CONTRACTS_PATH}
|
||||
${BIN}/frostfs-adm --config ./dev/adm/frostfs-adm.yml morph refill-gas --storage-wallet ./dev/storage/wallet01.json --gas 10.0
|
||||
${BIN}/frostfs-adm --config ./dev/adm/frostfs-adm.yml morph refill-gas --storage-wallet ./dev/storage/wallet02.json --gas 10.0
|
||||
${BIN}/frostfs-adm --config ./dev/adm/frostfs-adm.yml morph refill-gas --storage-wallet ./dev/storage/wallet03.json --gas 10.0
|
||||
${BIN}/frostfs-adm --config ./dev/adm/frostfs-adm.yml morph refill-gas --storage-wallet ./dev/storage/wallet04.json --gas 10.0
|
||||
${BIN}/frostfs-adm --config ./dev/adm/frostfs-adm.yml morph refill-gas --gas 10.0 \
|
||||
--storage-wallet ./dev/storage/wallet01.json \
|
||||
--storage-wallet ./dev/storage/wallet02.json \
|
||||
--storage-wallet ./dev/storage/wallet03.json \
|
||||
--storage-wallet ./dev/storage/wallet04.json
|
||||
|
||||
@if [ ! -f "$(LOCODE_DB_PATH)" ]; then \
|
||||
make locode-download; \
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue