Skip to content

CI: Add build for Ubuntu 24. #27

CI: Add build for Ubuntu 24.

CI: Add build for Ubuntu 24. #27

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
ubuntu-latest:
runs-on: ubuntu-24.04
name: Ubuntu 24.04
steps:
- name: Checkout
uses: actions/checkout@v4
# Runs a set of commands using the runners shell
- name: Start build
run: |
echo Beginning build
pwd
ls -la
sudo apt-get update
sudo 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
sudo scripts/libetpan.sh
cd ../evergreen
make
sudo make install
debian-stable:
runs-on: ubuntu-latest
name: Debian 12
container: debian:12
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