Skip to content

regenerate strfry.conf #422

regenerate strfry.conf

regenerate strfry.conf #422

Workflow file for this run

name: ubuntu
on:
push:
branches: [ master ]
paths-ignore: [ '**.md', 'docs/**' ]
pull_request:
branches: [ master ]
paths-ignore: [ '**.md', 'docs/**' ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ubuntu:
runs-on: ubuntu-latest
name: A job to build and run strfry on Ubuntu
steps:
- name: Checkout strfry
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build strfry
run: |
sudo apt update && sudo apt install -y --no-install-recommends \
build-essential git g++ make pkg-config libtool ca-certificates \
libssl-dev zlib1g-dev liblmdb-dev libflatbuffers-dev libsecp256k1-dev libzstd-dev
git submodule update --init
make setup-golpe
make -j$(nproc)
if ! [ -f ./strfry ]; then
echo "Strfry build failed."
exit 1
fi