Skip to content

Commit c320b85

Browse files
authored
Merge pull request #136 from confio/CI-update-rust-optimizer
Update rust-optimiser version in CI
2 parents 2997c52 + 3785ff0 commit c320b85

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ jobs:
588588
- run:
589589
name: Build development contracts
590590
command: |
591-
docker run --volumes-from with_code cosmwasm/workspace-optimizer:0.12.4
591+
docker run --volumes-from with_code cosmwasm/workspace-optimizer:0.12.6
592592
docker cp with_code:/code/artifacts ./artifacts
593593
- run:
594594
name: Show data

scripts/publish.sh

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
set -o errexit -o nounset -o pipefail
33
command -v shellcheck >/dev/null && shellcheck "$0"
44

5+
function print_usage() {
6+
echo "Usage: $0 [-h|--help]"
7+
echo "Publishes crates to crates.io."
8+
}
9+
10+
if [ $# = 1 ] && ( [ "$1" = "-h" ] || [ "$1" = "--help" ] )
11+
then
12+
print_usage
13+
exit 1
14+
fi
15+
516
# These are imported by other packages - wait 30 seconds between each as they have linear dependencies
617
BASE_CRATES="packages/bindings packages/bindings-test packages/tg4 packages/utils contracts/tg4-engagement contracts/tg4-stake contracts/tg4-mixer packages/tg3 packages/voting-contract"
718

0 commit comments

Comments
 (0)