Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minimac4 & savvy: add aarch64/arm64 builds #52521

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions recipes/minimac4/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
set -euo pipefail
set -xeuo pipefail

echo "Building Minimac4 version ${PKG_VERSION}"

Expand Down Expand Up @@ -41,7 +41,7 @@ cmake \
-DCPACK_PACKAGE_CONTACT="[email protected]" \
..

make || exit 1
make -j"${CPU_COUNT}" || exit 1
make install || exit 1
make CTEST_OUTPUT_ON_FAILURE=1 test || exit 1
echo "Minimac4 installation completed successfully"
Expand Down
7 changes: 6 additions & 1 deletion recipes/minimac4/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package:
version: {{ version }}

build:
number: 0
number: 1
run_exports:
- {{ pin_subpackage('minimac4', max_pin='x.x.x') }}

Expand Down Expand Up @@ -39,3 +39,8 @@ about:
license_file: LICENSE
summary: "Computationally efficient genotype imputation"
description: "Minimac4 is a lower memory and more computationally efficient implementation of the genotype imputation algorithms in minimac/mininac2/minimac3."

extra:
additional-platforms:
- linux-aarch64
- osx-arm64
4 changes: 2 additions & 2 deletions recipes/savvy/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

set -e
set -x
set -ex

mkdir -p build
cd build
Expand Down
10 changes: 7 additions & 3 deletions recipes/savvy/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@ source:
- patches/0002-patch-cmakelists-for-conda-build.patch

build:
skip: True # [win]
number: 2
number: 3
run_exports:
- {{ pin_subpackage(name, max_pin='x') }}

requirements:
build:
- make
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- cmake
- make # [not win]
- make
host:
- shrinkwrap
- zstd
Expand All @@ -45,6 +46,9 @@ about:
dev_url: https://github.com/statgen/savvy

extra:
additional-platforms:
- linux-aarch64
- osx-arm64
recipe-maintainers:
- matuskosut
- jonathonl
Loading