DNMTools builds on macOS #16
Workflow file for this run
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: 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++-12 | |
run: ./configure CXX="g++-12" CPPFLAGS="-I$(brew --prefix)/include" LDFLAGS="-L$(brew --prefix)/lib" | |
- name: make | |
run: make CXXFLAGS='-O3 -DNDEBUG -Wl,-ld_classic' |