1 version: 2 2 3 build: 4 os: ubuntu-22.04 5 apt_packages: 6 - autoconf 7 - automake 8 - libtool 9 - make 10 - libevent-dev 11 - libssl-dev 12 - flex 13 - bison 14 - mandoc 15 - libprotobuf-c-dev 16 - protobuf-c-compiler 17 - libfstrm-dev 18 tools: 19 python: "3" 20 jobs: 21 pre_build: 22 - | 23 autoconf && autoheader 24 libtoolize -c -i 25 ./configure --with-libevent=yes --with-libssl=yes 26 make html 27 28 sphinx: 29 configuration: doc/manual/conf.py 30 31 python: 32 install: 33 - requirements: doc/manual/requirements.txt 34 35 submodules: 36 include: all 37