CI: Add build for Ubuntu 24. #27
This file contains 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
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 |