Skip to content

DNMTools builds on macOS #8

DNMTools builds on macOS

DNMTools builds on macOS #8

Workflow file for this run

name: DNMTools builds on macOS
on:
workflow_dispatch:
jobs:
build:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update Homebrew
run: brew update
- name: Install autotools
run: brew install autoconf automake libtool
- name: Install dependencies
run: brew install htslib gsl
- name: Generate configure script
run: ./autogen.sh
- name: Configure with g++-13
run: ./configure CXX="g++-13" CPPFLAGS="-I$(brew --prefix)/include" LDFLAGS="-L$(brew --prefix)/lib"
- name: Build with g++-13
run: make
- name: Test g++-13 build
run: make check-TESTS
- name: Cleanup after g++-13 build
run: make distclean