Split ubuntu dependencies in CI script #124
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: Bigloo CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt -qq update | |
- run: sudo apt install -y dh-make libssl1.1 libssl-dev | |
- run: sudo apt install -y libssl1.1 libssl-dev | |
- run: sudo apt install -y dh-make libsqlite3-0 libsqlite3-dev | |
- run: sudo apt install -y libasound2 libasound2-dev | |
- run: sudo apt install -y libflac8 libflac-dev | |
- run: sudo apt install -y libmpg123-0 libmpg123-dev | |
- run: sudo apt install -y libavahi-core7 libavahi-core-dev libavahi-common-dev libavahi-common3 libavahi-client3 libavahi-client-dev | |
- run: sudo apt install -y libunistring2 libunistring-dev | |
- run: sudo apt install -y libpulse-dev libpulse0 | |
- run: sudo apt install -y automake libtool | |
- run: sudo apt install -y libgmp-dev libgmp3-dev libgmp10 | |
- run: wget -nv ftp://ftp-sop.inria.fr/indes/fp/Bigloo/bigloo-unstable.tar.gz -O /tmp/bigloo-unstable.tar.gz > /dev/null | |
- run: pushd /tmp && tar xfz /tmp/bigloo-unstable.tar.gz && popd | |
- run: pushd /tmp/bigloo-unstable && ./configure --prefix=/usr > /dev/null 2>&1 && make -j 2>&1 > /dev/null && sudo make install > /dev/null && popd | |
- run: ./configure --prefix=/tmp/BIGLOO --disable-gstreamer --jvm=no | |
- run: make hostboot BGLBUILDBINDIR=/usr/bin | |
- run: make install-progs > /dev/null | |
- run: make -j cibootstrap CONFIGUREOPTS="--prefix=/tmp/BIGLOO --disable-gstreamer --jvm=no" | |
- run: make install-sans-docs > /dev/null | |
- run: make fulltest | |