mirror of
https://github.com/serai-dex/serai.git
synced 2024-10-30 08:57:36 +00:00
023afaf7ce
* Initial stab at Bulletproofs+ Does move around the existing Bulletproofs code, does still work as expected. * Make the Clsag RCTPrunable type work with BP and BP+ * Initial set of BP+ bug fixes * Further bug fixes * Remove RING_LEN as a constant * Monero v16 TX support Doesn't implement view tags, nor going back to v14, nor the updated BP clawback logic. * Support v14 and v16 at the same time
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: monero-regtest
|
|
description: Spawns a regtest Monero daemon
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Monero daemon cache
|
|
id: cache-monerod
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: monerod
|
|
key: monerod-${{ runner.os }}-${{ runner.arch }}-v0.18.0.0
|
|
|
|
- name: Download the Monero Daemon
|
|
if: steps.cache-monerod.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-v0.18.0.0.tar.bz2
|
|
wget https://downloads.getmonero.org/cli/$FILE
|
|
tar -xvf $FILE
|
|
|
|
mv monero-x86_64-linux-gnu-v0.18.0.0/monerod monerod
|
|
|
|
- name: Monero Regtest Daemon
|
|
shell: bash
|
|
run: ./monerod --regtest --offline --fixed-difficulty=1 --detach
|