Skip to content

github/ci: fixing merge conflict with coverage uploading #296

github/ci: fixing merge conflict with coverage uploading

github/ci: fixing merge conflict with coverage uploading #296

Workflow file for this run

name: Core C CI
on:
workflow_dispatch:
pull_request:
push:
jobs:
standard:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, macos-latest]
name: "💦 ${{ matrix.runs-on }}"
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4
- name: setup
if: runner.os == 'macos'
run: |
brew update
brew install autoconf automake
#- name: Setup libfec
# run: git clone https://github.com/jgaeddert/libfec.git && cd libfec && ./configure && make && sudo make install
- name: Setup pybind-dev (Linux)
if: runner.os == 'Linux'
run: sudo apt-get install pybind11-dev
- name: Setup pybind-dev (macOS)
if: runner.os == 'macOS'
run: brew install pybind11
- name: Setup python dependencies (pip)
run: sudo -H python3 -m pip install pybind11 numpy matplotlib
- name: bootstrap
run: ./bootstrap.sh
- name: configure
run: ./configure
- name: make
run: make -j 2
- name: make check-doc
run: make check-doc
- name: make check
run: make -j 2 check
- name: make install
run: sudo make install
- name: ldconfig (Linux)
if: runner.os == 'Linux'
run: sudo ldconfig
- name: make check-link
run: make check-link