Skip to content

Abismal builds on Ubuntu #2

Abismal builds on Ubuntu

Abismal builds on Ubuntu #2

Workflow file for this run

name: Abismal Ubuntu Builds
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: sudo apt-get install -y libhts-dev
- name: Generate configure script
run: ./autogen.sh
- name: configure
run: ./configure
- name: make with g++
run: make CXX="g++"
- name: cleanup after g++
run: make clean
- name: make with clang++
run: make CXX="clang++"
- name: cleanup after clang++
run: make clean