mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-25 21:19:35 +00:00
88440807e1
Some checks failed
Processor Tests / build (push) Has been cancelled
Coordinator Tests / build (push) Has been cancelled
Full Stack Tests / build (push) Has been cancelled
Lint / clippy (macos-13) (push) Has been cancelled
Lint / clippy (macos-14) (push) Has been cancelled
Lint / clippy (ubuntu-latest) (push) Has been cancelled
Lint / clippy (windows-latest) (push) Has been cancelled
Lint / deny (push) Has been cancelled
Lint / fmt (push) Has been cancelled
Lint / machete (push) Has been cancelled
Message Queue Tests / build (push) Has been cancelled
networks/ Tests / test-networks (push) Has been cancelled
no-std build / build (push) Has been cancelled
Reproducible Runtime / build (push) Has been cancelled
Monero Tests / unit-tests (push) Has been cancelled
Monero Tests / integration-tests (v0.17.3.2) (push) Has been cancelled
Monero Tests / integration-tests (v0.18.3.4) (push) Has been cancelled
Tests / test-infra (push) Has been cancelled
Tests / test-substrate (push) Has been cancelled
Tests / test-serai-client (push) Has been cancelled
* Monero v0.18.3.4 * Correct `check_weight_and_fee` call * Restore empty test files so CI isn't borked
49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
name: monero-wallet-rpc
|
|
description: Spawns a Monero Wallet-RPC.
|
|
|
|
inputs:
|
|
version:
|
|
description: "Version to download and run"
|
|
required: false
|
|
default: v0.18.3.4
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Monero Wallet RPC Cache
|
|
id: cache-monero-wallet-rpc
|
|
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2
|
|
with:
|
|
path: monero-wallet-rpc
|
|
key: monero-wallet-rpc-${{ runner.os }}-${{ runner.arch }}-${{ inputs.version }}
|
|
|
|
- name: Download the Monero Wallet RPC
|
|
if: steps.cache-monero-wallet-rpc.outputs.cache-hit != 'true'
|
|
# Calculates OS/ARCH to demonstrate it, yet then locks to linux-x64 due
|
|
# to the contained folder not following the same naming scheme and
|
|
# requiring further expansion not worth doing right now
|
|
shell: bash
|
|
run: |
|
|
RUNNER_OS=${{ runner.os }}
|
|
RUNNER_ARCH=${{ runner.arch }}
|
|
|
|
RUNNER_OS=${RUNNER_OS,,}
|
|
RUNNER_ARCH=${RUNNER_ARCH,,}
|
|
|
|
RUNNER_OS=linux
|
|
RUNNER_ARCH=x64
|
|
|
|
FILE=monero-$RUNNER_OS-$RUNNER_ARCH-${{ inputs.version }}.tar.bz2
|
|
wget https://downloads.getmonero.org/cli/$FILE
|
|
tar -xvf $FILE
|
|
|
|
mv monero-x86_64-linux-gnu-${{ inputs.version }}/monero-wallet-rpc monero-wallet-rpc
|
|
|
|
- name: Monero Wallet RPC
|
|
shell: bash
|
|
run: |
|
|
./monero-wallet-rpc --allow-mismatched-daemon-version \
|
|
--daemon-address 0.0.0.0:18081 --daemon-login serai:seraidex \
|
|
--disable-rpc-login --rpc-bind-port 18082 \
|
|
--wallet-dir ./ \
|
|
--detach
|