Skip to content

fixup! fixup! Ticket #4170: implement CI via GitHub Actions #3

fixup! fixup! Ticket #4170: implement CI via GitHub Actions

fixup! fixup! Ticket #4170: implement CI via GitHub Actions #3

Workflow file for this run

name: CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get install -y autoconf gettext autopoint libtool check indent
sudo apt-get install -y e2fslibs-dev libaspell-dev libglib2.0-dev libgpm-dev libncurses5-dev libslang2-dev libssh2-1-dev libx11-dev unzip
- name: Bootstrap build system
run: ./autogen.sh
- name: Check formatting
run: make indent || true
- name: Build
run: |
mkdir -p build-default && cd $_
../configure \
--prefix="$(pwd)/install" \
--enable-mclib \
--enable-aspell \
--enable-vfs-undelfs \
--enable-werror
make
make check
make install