Skip to content

remove spleaf lib

remove spleaf lib #46

Workflow file for this run

name: compilers CI
on:
push:
branches:
- beta
jobs:
install_linux:
continue-on-error: true
name: ${{ matrix.os }}-${{ matrix.compiler }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-16.04, ubuntu-18.04, ubuntu-20.04]
compiler: [g++-4.8, g++-5, g++-6, g++-7, g++-8, g++-9, g++-10] #, clang-3.9, clang]
steps:
- name: Setup compiler
id: setup
run: |
sudo apt install ${{ matrix.compiler }}
- name: Check compiler
if: ${{ success() }}
run: |
${{ matrix.compiler }} --version
- uses: actions/checkout@v2
if: ${{ success() }}
- name: Checkout submodules
if: ${{ success() }}
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Install kima
if: ${{ success() }}
run: |
CXX=${{ matrix.compiler }} make -j 4