Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,21 @@ workflows:
version: 2
create-snapshot:
jobs:
- deploy-and-snapshot:
- deploy-and-create-snapshot:
filters:
branches:
only:
- update-dss-deploy-scripts
- circleci-config
jobs:
deploy-and-snapshot:
deploy-and-create-snapshot:
docker:
- image: levity/dapptools-node-latest
steps:
- checkout
- run:
name: Install dependencies
command: |
yarn
yarn install-nix
command: yarn
- run:
name: Build new snapshot
command: |
Expand Down
1 change: 0 additions & 1 deletion scripts/commit-and-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ git add .
git commit -m "Create new snapshot"
git push origin $BRANCH


# git/yarn authentication:
# should move out of this file
# should allow for pushing to this branch
Expand Down
2 changes: 1 addition & 1 deletion scripts/deploy-mcd
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function deploy_mcd_dds {

# submodule contracts are deprecated; this nix command
# installs all necessary dependencies
ETH_RPC_URL="http://localhost:2000" nix run -f ./ -c dss-deploy testchain
ETH_RPC_URL="http://localhost:2000" nix run --show-trace -f ./ -c dss-deploy testchain

# Copy addresses and abis
jq -S . $DDS/out/addresses.json > $OUT/addresses-mcd.json
Expand Down