Move to version 2.8.7 #251
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: LinuxBuild | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- v* | |
env: | |
INSTALLPREFIX: "_local" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt install gcc g++ git swig python3-dev libssl-dev pkg-config \ | |
libavahi-client-dev avahi-daemon libtool autoconf automake make \ | |
libsctp-dev libpam-dev libwrap0-dev libglib2.0-dev tcl-dev \ | |
libasound2-dev libudev-dev libopenipmi-dev | |
- name: Configure | |
run: | | |
mkdir $INSTALLPREFIX | |
./reconf | |
./configure --prefix=$(pwd)/$INSTALLPREFIX/ --enable-internal-trace | |
- name: Build | |
run: | | |
make | |
make install | |
make check |