Skip to content
This repository was archived by the owner on Oct 20, 2023. It is now read-only.

Commit f6ceed6

Browse files
author
Oliver Weichhold
authoredJan 8, 2022
Merge pull request #1077 from oliverw/oliverw
Oliverw
2 parents f5a7f1a + 83cbdd2 commit f6ceed6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+786
-144
lines changed
 

‎build-ubuntu-20.04.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
3+
# add dotnet repo
4+
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
5+
sudo dpkg -i packages-microsoft-prod.deb
6+
rm packages-microsoft-prod.deb
7+
8+
# install dev-dependencies
9+
sudo apt-get -y install dotnet-sdk-6.0 git cmake build-essential libssl-dev pkg-config libboost-all-dev libsodium-dev libzmq5
10+
11+
(cd src/Miningcore && \
12+
BUILDIR=${1:-../../build} && \
13+
echo "Building into $BUILDIR" && \
14+
dotnet publish -c Release --framework net6.0 -o $BUILDIR)
110 KB
Binary file not shown.

0 commit comments

Comments
 (0)
This repository has been archived.