Skip to content

Commit

Permalink
Adjust workflow to use upstream gnunet to build
Browse files Browse the repository at this point in the history
Signed-off-by: Jacki <[email protected]>
  • Loading branch information
TheJackiMonster committed May 28, 2024
1 parent 4f8a95b commit a203804
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:
- name: Install tools
run: |
sudo apt-get -qq update
sudo apt-get -qq install wget tar
sudo apt-get -qq install git
- name: Download framework
run: |
wget https://www.artfiles.org/gnu.org/gnunet/gnunet-latest.tar.gz
tar -xf gnunet-latest.tar.gz
git clone https://git.gnunet.org/gnunet.git
- name: Install dependencies (framework)
run: |
sudo apt-get -qq update
sudo apt-get -qq install libgcrypt20-dev recutils libjansson-dev libsodium-dev libcurl4-gnutls-dev libidn2-dev libunistring-dev libsqlite3-dev libmicrohttpd-dev libltdl-dev
sudo apt-get -qq install libgcrypt20-dev recutils libjansson-dev libsodium-dev libcurl4-gnutls-dev libidn2-dev libunistring-dev libsqlite3-dev libmicrohttpd-dev libltdl-dev python3-sphinx python3-sphinx-book-theme
- name: Build framework
run: |
cd $(ls | grep gnunet- | head -n1)
cd gnunet
./bootstrap
./configure --prefix=/usr --disable-documentation
make -j $(nproc)
sudo make install
Expand Down

0 comments on commit a203804

Please sign in to comment.