mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-17 00:07:53 +00:00
Boog900
8557073c15
* start re-working p2p to work with change monero-wire * start re-working p2p to work with change monero-wire adds back some changes from #22 * change the peer module to use the new API + fix a couple bugs * remove peer set for now * add try_from/from conversion between `Message` and `Request`/`Response` * Allow specifying other parameters in levin-cuprate * add new `LevinCommand` enum and clean up monero-wire message de/encoding * fix issues with merge * start splitting up p2p crate into smaller crates. * add monerod action from serai to test network code * remove tracing in tests
62 lines
No EOL
2.1 KiB
YAML
62 lines
No EOL
2.1 KiB
YAML
# MIT License
|
|
#
|
|
# Copyright (c) 2022-2023 Luke Parker
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
# copies or substantial portions of the Software.
|
|
#
|
|
# Initially taken from Serai Dex: https://github.com/serai-dex/serai/blob/b823413c9b7ae6747b9af99e18379cfc49f4271a/.github/actions/monero/action.yml.
|
|
|
|
|
|
|
|
name: monero-regtest
|
|
description: Spawns a regtest Monero daemon
|
|
|
|
inputs:
|
|
version:
|
|
description: "Version to download and run"
|
|
required: false
|
|
default: v0.18.2.0
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Monero Daemon Cache
|
|
id: cache-monerod
|
|
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
|
|
with:
|
|
path: monerod
|
|
key: monerod-${{ runner.os }}-${{ runner.arch }}-${{ inputs.version }}
|
|
|
|
- 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-${{ inputs.version }}.tar.bz2
|
|
wget https://downloads.getmonero.org/cli/$FILE
|
|
tar -xvf $FILE
|
|
|
|
mv monero-x86_64-linux-gnu-${{ inputs.version }}/monerod monerod
|
|
|
|
- name: Monero Regtest Daemon
|
|
shell: bash
|
|
run: ./monerod --regtest --fixed-difficulty=1 --detach --out-peers 0 |