Skip to content

Commit

Permalink
Merge pull request #6192 from MinaProtocol/fix/circle-ci-mina
Browse files Browse the repository at this point in the history
Update circleci workflow name
  • Loading branch information
mergify[bot] authored Oct 1, 2020
2 parents 9c6a598 + eb1627d commit cb50c97
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ jobs:

workflows:
version: 2
coda_parallel:
mina_parallel:
when:
# We do seem to need a useless `and true` here
and:
Expand Down
2 changes: 1 addition & 1 deletion .circleci/config.yml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -703,7 +703,7 @@ jobs:

workflows:
version: 2
coda_parallel:
mina_parallel:
when:
# We do seem to need a useless `and true` here
and:
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile-coda-daemon-puppeteered
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ kill -s SIGUSR1 $(./find_puppeteer.sh)'\

RUN chmod +x find_puppeteer.sh start.sh stop.sh

RUN curl -sL "https://raw.githubusercontent.com/CodaProtocol/coda/${CODA_BRANCH}/dockerfiles/coda_daemon_puppeteer.py" \
RUN curl -sL "https://raw.githubusercontent.com/MinaProtocol/mina/${CODA_BRANCH}/dockerfiles/coda_daemon_puppeteer.py" \
-o /root/coda_daemon_puppeteer.py

ENTRYPOINT ["/usr/bin/dumb-init", "python3", "/root/coda_daemon_puppeteer.py"]
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile-rosetta
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ RUN git clone \
--depth 1 \
--shallow-submodules \
--recurse-submodules \
https://github.com/CodaProtocol/coda ${HOME}/${CODA_DIR}
https://github.com/MinaProtocol/mina ${HOME}/${CODA_DIR}

WORKDIR $HOME/$CODA_DIR

Expand Down Expand Up @@ -233,7 +233,7 @@ RUN cd $HOME && rm -rf $HOME/${CODA_DIR} \
--depth 1 \
--shallow-submodules \
--recurse-submodules \
https://github.com/CodaProtocol/coda ${HOME}/${CODA_DIR}
https://github.com/MinaProtocol/mina ${HOME}/${CODA_DIR}

WORKDIR $HOME/${CODA_DIR}

Expand Down
2 changes: 1 addition & 1 deletion scripts/compare_pr_diff_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def run_comparison(base_commit, compare_script):
os.mkdir('base')
os.chdir('base')
# it would be faster to do a clone of the local repo, but there's "smudge error" (?)
subprocess.run(['git', 'clone', 'https://github.com/CodaProtocol/coda.git'])
subprocess.run(['git', 'clone', 'https://github.com/MinaProtocol/mina.git'])
os.chdir('coda')
subprocess.run(['git', 'checkout', base_commit])
os.chdir(cwd)
Expand Down
2 changes: 1 addition & 1 deletion scripts/update_branch_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def main(required_file):
if not (len(required_status) > 0):
print("required status was empty, this is probably in error and I refuse to turn off all status checks", file=sys.stderr)
sys.exit(1)
r = requests.patch("https://api.github.com/repos/CodaProtocol/coda/branches/develop/protection/required_status_checks",
r = requests.patch("https://api.github.com/repos/MinaProtocol/mina/branches/develop/protection/required_status_checks",
json={"strict": True, "contexts": required_status},
auth=('o1-service-account', os.environ['GITHUB_API_TOKEN']),
)
Expand Down

0 comments on commit cb50c97

Please sign in to comment.