From 9b626d8b588e99d45ebd8996120302048f54da1a Mon Sep 17 00:00:00 2001 From: InterLinked1 <24227567+InterLinked1@users.noreply.github.com> Date: Sat, 21 Sep 2024 17:22:38 -0400 Subject: [PATCH] CI: Add builds for Debian 11 and Debian 10. --- .github/workflows/main.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2120446..bc10654 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,3 +49,39 @@ jobs: cd ../evergreen make make install + debian-11: + runs-on: ubuntu-latest + name: Debian 11 + container: debian:11 + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Start build + run: | + apt-get update + apt-get install -y git wget automake pkg-config libtool m4 build-essential libncurses-dev + cd .. + git clone https://github.com/InterLinked1/lbbs.git + cd lbbs + scripts/libetpan.sh + cd ../evergreen + make + make install + debian-10: + runs-on: ubuntu-latest + name: Debian 10 + container: debian:10 + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Start build + run: | + apt-get update + apt-get install -y git wget automake pkg-config libtool m4 build-essential libncurses-dev + cd .. + git clone https://github.com/InterLinked1/lbbs.git + cd lbbs + scripts/libetpan.sh + cd ../evergreen + make + make install \ No newline at end of file