From 2011d6627193b696b1780dd16e476203fc88710e Mon Sep 17 00:00:00 2001 From: "Joseph D. Gaeddert" Date: Wed, 6 Oct 2021 23:30:06 -0400 Subject: [PATCH] github/ci: adding step to build/install libfec --- .github/workflows/core.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index ce3621a77..e25962539 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -18,11 +18,18 @@ jobs: steps: - uses: actions/checkout@v2 + + - name: Setup libfec + run: git clone https://github.com/jgaeddert/libfec.git && cd libfec && ./configure && make && sudo make install + - name: bootstrap run: ./bootstrap.sh + - name: configure run: ./configure + - name: make run: make -j 2 + - name: make check run: make -j 2 check