Abismal builds on Ubuntu #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |