Created
September 16, 2021 22:40
-
-
Save flavio-fernandes/eba4b360e7be22e47a0d0563c6533b88 to your computer and use it in GitHub Desktop.
ovn build man pages via dist-docs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# docker run -i --tty --rm --net=host --name=ubuntu ubuntu:18.04 | |
DEPS='git automake libtool gcc bc libjemalloc1 libjemalloc-dev | |
libssl-dev llvm-dev libelf-dev libnuma-dev libpcap-dev | |
selinux-policy-dev | |
libunbound-dev libunwind-dev | |
python3 python3-pip man | |
ghostscript markdown' | |
apt update | |
apt install -y $DEPS | |
pip3 install --upgrade pip | |
export PATH="${PATH}:${HOME}/bin:${HOME}/.local/bin" | |
git clone https://github.com/ovn-org/ovn.git | |
pushd ./ovn | |
git submodule update --init | |
./.ci/linux-prepare.sh | |
./.ci/linux-build.sh | |
make dist-docs | |
popd | |
ls -l ./ovn/dist-docs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment