Skip to content

Adding libdeflate to the cmake build config #47

Adding libdeflate to the cmake build config

Adding libdeflate to the cmake build config #47

name: Abismal build (Ubuntu)
on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-with-gcc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update apt
run: sudo apt update
- name: Install dependencies
run: sudo apt-get install -y libhts-dev
- name: Generate configure script
run: ./autogen.sh
- name: configure for GCC
run: ./configure CXX="g++"
- name: make with g++
run: make -j4
build-with-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update apt
run: sudo apt update
- name: Install dependencies
run: sudo apt-get install -y libhts-dev libomp-dev
- name: Generate configure script
run: ./autogen.sh
- name: configure for Clang
run: ./configure CXX="clang++"
- name: make with clang++
run: make -j4