Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Commit

Permalink
Repair Circle workflows and update keep-tecdsa
Browse files Browse the repository at this point in the history
We had a couple issues with workflow execution after the last Circle PR
was merged.  We've corrected those by including the required modified
.npmrc in the migrate_contracts job, and including the tag filter on the
compile_contracts job in the keep_test workflow.  Additionally there's
been a new release for keep-tecdsa, we've udpated to pull that package.
  • Loading branch information
Sloan Thompson committed Mar 17, 2020
1 parent fbb2018 commit 54e61fd
Show file tree
Hide file tree
Showing 3 changed files with 3,121 additions and 1,762 deletions.
14 changes: 13 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,16 @@ jobs:
migrate_contracts:
executor: docker-thesis-buildpack
steps:
- checkout
- setup_remote_docker:
docker_layer_caching: true
- checkout
- attach_workspace:
at: .
- run:
name: Remove Installed node_module
working_directory: ~/project/implementation
command: |
rm -rf node_modules
- run:
name: Provision External Contract Addresses
command: |
Expand Down Expand Up @@ -301,6 +308,11 @@ workflows:
- compile_contracts:
requires:
- setup_github_package_registry
filters:
tags:
only: /^v.*/
branches:
ignore: /.*/
- migrate_contracts:
filters:
tags:
Expand Down
Loading

0 comments on commit 54e61fd

Please sign in to comment.