Skip to content

DotNetRGS: keep track of pruned channels #47

DotNetRGS: keep track of pruned channels

DotNetRGS: keep track of pruned channels #47

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Build
on: [push, pull_request]
jobs:
build-dotnetrgs-server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore ./DotNetRGS.Server/DotNetRGS.Server.fsproj
- name: Build
run: dotnet build ./DotNetRGS.Server/DotNetRGS.Server.fsproj --no-restore
build-dotnetrgs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: install missing dependencies
run: sudo apt install --yes fsharp
- name: install last version of mono (Microsoft APT repositories)
run: sudo ./scripts/install_mono_from_microsoft_deb_packages.sh
- name: check mono version
run: mono --version
- name: Build geewallet
run: |
cd geewallet
./configure.sh
make release
- uses: nuget/setup-nuget@v1
with:
nuget-version: '6.5.0'
- name: Restore dependencies
run: nuget restore ./DotNetRGS/DotNetRGS.fsproj
- name: Build
run: msbuild ./DotNetRGS/DotNetRGS.fsproj /p:Configuration=Release