Skip to content

Update CMake

Update CMake #13

Workflow file for this run

name: libbinio CI
on:
- push
- pull_request
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
compiler: [gcc, clang]
include:
- compiler: gcc-4.8 # To test compatibility with older systems
os: ubuntu-latest
- compiler: djgpp-2.0.5-gcc-12.2.0 # To test compatibility for Adplay - DOS
os: ubuntu-latest
- compiler: djgpp-2.0.5-gcc-4.8.5 # To test compatibility for Adplay - DOS
os: ubuntu-latest
- compiler: cmake
os: ubuntu-latest
- compiler: cmake
os: macos-latest
- compiler: cmake
os: windows-latest
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Install packages (autotools, Linux)
if: ${{ runner.os == 'Linux' && matrix.compiler != 'cmake'}}
run: |
sudo apt update
sudo apt install -y texlive-latex-base texinfo
if [[ ${{ matrix.compiler }} == "clang" ]]; then
sudo apt install -y libncurses5
fi
if [[ ${{ matrix.compiler }} == "gcc-4.8" ]]; then
wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.8/g++-4.8_4.8.5-4ubuntu8_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.8/libstdc++-4.8-dev_4.8.5-4ubuntu8_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.8/gcc-4.8-base_4.8.5-4ubuntu8_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.8/gcc-4.8_4.8.5-4ubuntu8_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.8/libgcc-4.8-dev_4.8.5-4ubuntu8_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.8/cpp-4.8_4.8.5-4ubuntu8_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-4.8/libasan0_4.8.5-4ubuntu8_amd64.deb
sudo apt install ./gcc-4.8_4.8.5-4ubuntu8_amd64.deb ./gcc-4.8-base_4.8.5-4ubuntu8_amd64.deb ./libstdc++-4.8-dev_4.8.5-4ubuntu8_amd64.deb ./cpp-4.8_4.8.5-4ubuntu8_amd64.deb ./libgcc-4.8-dev_4.8.5-4ubuntu8_amd64.deb ./libasan0_4.8.5-4ubuntu8_amd64.deb ./g++-4.8_4.8.5-4ubuntu8_amd64.deb
fi
if [[ ${{ matrix.compiler }} = djgpp* ]]; then
# Flex is required, but even though it's in the GitHub runner image, and marked as installed
# it's still missing some things, see https://github.com/orgs/community/discussions/45029
sudo apt install -y libfl2 libfl-dev
if [[ ${{ matrix.compiler }} == "djgpp-2.0.5-gcc-12.2.0" ]]; then
wget https://github.com/andrewwutw/build-djgpp/releases/download/v3.4/djgpp-linux64-gcc1220.tar.bz2
bzcat djgpp-linux64-gcc1220.tar.bz2 | sudo tar -x --directory /usr/local
fi
if [[ ${{ matrix.compiler }} == "djgpp-2.0.5-gcc-4.8.5" ]]; then
wget https://github.com/andrewwutw/build-djgpp/releases/download/v1.6/djgpp-linux64-gcc485.tar.bz2
bzcat djgpp-linux64-gcc485.tar.bz2 | sudo tar -x --directory /usr/local
fi
fi
- name: Install packages (autotools, macOS)
if: ${{ runner.os == 'macOS' && matrix.compiler != 'cmake'}}
run: |
# Allow core dumps
sudo sh -c 'touch /cores/test && rm /cores/test && chmod -R 0777 /cores'
brew update
# See comment in 'make' step (this takes good 20 mins)
#brew install --cask mactex-no-gui
brew install automake libtool texinfo
- name: Install LLVM and Clang (autotools)
if: ${{ matrix.compiler == 'clang' && runner.os != 'macOS'}}
uses: KyleMayes/install-llvm-action@v1
with:
version: "10.0"
- name: Set GCC-4.8 environment (autotools)
if: ${{ matrix.compiler == 'gcc-4.8' }}
run: echo 'compile_opts=CC=gcc-4.8 CXX=g++-4.8' >> $GITHUB_ENV
- name: Set GCC environment (autotools)
if: ${{ matrix.compiler == 'gcc' && runner.os == 'macOS' }}
run: echo 'compile_opts=CC=gcc CXX=g++' >> $GITHUB_ENV
- name: Set Clang environment (autotools)
if: ${{ matrix.compiler == 'clang' }}
run: echo 'compile_opts=CC=clang CXX=clang++' >> $GITHUB_ENV
- name: Set DJGPP environment (autotools)
if: ${{ startsWith(matrix.compiler, 'djgpp') }}
run: |
echo 'compile_opts=--host=i586-pc-msdosdjgpp --prefix=/usr/local/djgpp CXXFLAGS=-Wno-deprecated CPPFLAGS=-Wno-deprecated PKG_CONFIG_PATH=/usr/local/djgpp/lib/pkgconfig' >> $GITHUB_ENV
echo 'usr/local//djgpp/bin/' >> $GITHUB_PATH
- name: autoreconf (autotools)
if: ${{matrix.compiler != 'cmake'}}
run: autoreconf -i
- name: configure (autotools)
if: ${{matrix.compiler != 'cmake'}}
run: ./configure ${{ env.compile_opts }} || cat config.log
- name: make (autotools)
if: ${{matrix.compiler != 'cmake'}}
run: |
ulimit -c unlimited -S
if [[ ${{ runner.os }} == "macOS" ]]; then
# - macOS's /usr/bin/texi2dvi is broken
# - Furthermore, trying to get a working
# TeX installation on macOS is a futile
# endeavour, hence just run tests.
make check ${{ env.compile_opts }}
elif [[ ${{ matrix.compiler }} = djgpp* ]]; then
# Just verify it compiles and installs,
# we can't run tests because of binary incompatibility with host OS when cross compiling
# Note: compile_opts is not used here, since DJGPP requires stuff like --host for ./configure
# which will mess with make's command-line parsing
make all
elif [[ ${{ runner.os }} == "Linux" ]]; then
make distcheck ${{ env.compile_opts }}
fi
- name: Prepare test results (autotools, Linux)
if: ${{ runner.os == 'Linux' && !startsWith(matrix.compiler, 'djgpp') && matrix.compiler != 'cmake'}}
run: make check
- name: Get cmake and ninja (cmake)
if: ${{matrix.compiler == 'cmake'}}
uses: lukka/get-cmake@latest
- name: Find MSVC (cmake on Windows)
if: ${{matrix.compiler == 'cmake'}}
uses: ilammy/msvc-dev-cmd@v1
- name: Checkout repository (cmake)
if: ${{matrix.compiler == 'cmake'}}
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build (cmake)
if: ${{matrix.compiler == 'cmake'}}
uses: lukka/run-cmake@v10
env:
CPKG_ROOT:
# workaround for https://github.com/lukka/run-cmake/issues/142
with:
configurePreset: shared
buildPreset: shared