Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/abismal_build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ on:
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-x86:
runs-on: macos-15-intel
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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/abismal_release_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build-macos-binaries:
strategy:
matrix:
os: [macos-13, macos-14]
os: [macos-15-intel, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down