Skip to content

Commit

Permalink
CI: Add builds for Debian 11 and Debian 10.
Browse files Browse the repository at this point in the history
  • Loading branch information
InterLinked1 committed Sep 21, 2024
1 parent c7afd0c commit 9b626d8
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9b626d8

Please sign in to comment.