Skip to content

Commit

Permalink
Last dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Aug 13, 2020
1 parent e1ed5cd commit 561dde8
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
version: 2
workflows:
version: 2
# test:
# jobs:
# - contract_cw1_subkeys
# - contract_cw1_whitelist
# - contract_cw20_base
# - contract_cw20_escrow
# - package_cw1
# - package_cw20
# - lint
test:
jobs:
- contract_cw1_subkeys
- contract_cw1_whitelist
- contract_cw20_base
- contract_cw20_escrow
- package_cw1
- package_cw20
- lint
deploy:
jobs:
- build_and_upload_contracts
# filters:
# tags:
# only: /^v[0-9]+\.[0-9]+\.[0-9]+.*/
# branches:
# ignore: /.*/
# filters:
# tags:
# only: /^v[0-9]+\.[0-9]+\.[0-9]+.*/
# branches:
# ignore: /.*/

jobs:
contract_cw1_subkeys:
Expand Down Expand Up @@ -321,19 +321,17 @@ jobs:
# copy a config file into this volume
docker cp Cargo.toml with_code:/code
docker cp Cargo.lock with_code:/code
# copy code into this volume
docker cp ./contracts with_code:/code
docker cp ./packages with_code:/code
- run:
name: Build development contracts
command: |
docker run --volumes-from with_code cosmwasm/rust-optimizer:0.10.0
docker run --volumes-from with_code cosmwasm/rust-optimizer:0.10.1
docker cp with_code:/code/artifacts ./artifacts
mv artifacts/contracts.txt artifacts/checksums.txt
- run:
name: Show data
command: |
ls -l
echo "*****"
ls -l artifacts
cat artifacts/checksums.txt
# - run:
Expand Down

0 comments on commit 561dde8

Please sign in to comment.