Skip to content

Commit

Permalink
Flatten scripts folders
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Feb 4, 2024
1 parent 9bdab21 commit 9ec4edc
Show file tree
Hide file tree
Showing 15 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/actions/monero/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ runs:
- name: Monero Regtest Daemon
shell: bash
run: PATH=$PATH:/usr/bin ./orchestration/dev/coins/monero/scripts/run.sh --detach
run: PATH=$PATH:/usr/bin ./orchestration/dev/coins/monero/run.sh --detach
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions orchestration/src/coins/bitcoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ COPY --from=bitcoin --chown=bitcoin bitcoind /bin
EXPOSE 8332 8333
ADD /orchestration/{}/coins/bitcoin/scripts /scripts
CMD ["/scripts/run.sh"]
ADD /orchestration/{}/coins/bitcoin/run.sh /
CMD ["/run.sh"]
"#,
network.folder()
);
Expand Down
6 changes: 3 additions & 3 deletions orchestration/src/coins/monero.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apk --no-cache add gnupg
RUN wget https://downloads.getmonero.org/cli/monero-linux-x64-v${MONERO_VERSION}.tar.bz2
# Verify Binary -- fingerprint from https://github.com/monero-project/monero-site/issues/1949
ADD orchestration/coins/monero/temp/hashes-v${MONERO_VERSION}.txt .
ADD orchestration/coins/monero/hashes-v${MONERO_VERSION}.txt .
RUN gpg --keyserver hkp://keyserver.ubuntu.com:80 --keyserver-options no-self-sigs-only --receive-keys 81AC591FE9C4B65C5806AFC3F0AF4D462A0BDF92 && \
gpg --verify hashes-v${MONERO_VERSION}.txt && \
grep "$(sha256sum monero-linux-x64-v${MONERO_VERSION}.tar.bz2 | cut -c 1-64)" hashes-v${MONERO_VERSION}.txt
Expand All @@ -45,8 +45,8 @@ COPY --from=monero --chown=monero {monero_binary} /bin
EXPOSE {ports}
ADD /orchestration/{}/coins/{folder}/scripts /scripts
CMD ["/scripts/run.sh"]
ADD /orchestration/{}/coins/{folder}/run.sh /
CMD ["/run.sh"]
"#,
network.folder()
);
Expand Down
4 changes: 2 additions & 2 deletions orchestration/src/serai.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ COPY --from=builder --chown=serai /serai/AGPL-3.0 .
# Run the Serai node
EXPOSE 30333 9615 9933 9944
ADD /orchestration/{}/serai/scripts /scripts
CMD ["/scripts/run.sh"]
ADD /orchestration/{}/serai/run.sh /
CMD ["/run.sh"]
"#,
network.folder()
);
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 9ec4edc

Please sign in to comment.