Skip to content

Updating smithlab_cpp submodule #21

Updating smithlab_cpp submodule

Updating smithlab_cpp submodule #21

name: Abismal build (macOS)
on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-on-x86:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update Homebrew
run: brew update
- name: Install automake
run: brew install automake
- name: Install dependencies
run: brew install htslib
- name: Generate configure script
run: ./autogen.sh
- name: configure with g++-14
run: ./configure CXX="g++-14" CPPFLAGS="-I$(brew --prefix)/include" LDFLAGS="-L$(brew --prefix)/lib"
- name: Build with g++-14
run: make -j4
build-on-arm64:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Update Homebrew
run: brew update
- name: Install automake
run: brew install automake
- name: Install dependencies
run: brew install htslib
- name: Generate configure script
run: ./autogen.sh
- name: configure with g++-14
run: ./configure CXX="g++-14" CPPFLAGS="-I$(brew --prefix)/include" LDFLAGS="-L$(brew --prefix)/lib"
- name: Build with g++-14
run: make -j4