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

pydustmasker: add aarch64 build #51158

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 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
2 changes: 2 additions & 0 deletions recipes/pydustmasker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly --profile=
export PATH="$HOME/.cargo/bin:$PATH"

export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER="$CC"
export CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER="$CC"
martin-g marked this conversation as resolved.
Show resolved Hide resolved
export CARGO_TARGET_ARM64_UNKNOWN_LINUX_GNU_LINKER="$CC"
martin-g marked this conversation as resolved.
Show resolved Hide resolved

maturin build --interpreter python --release

Expand Down
6 changes: 5 additions & 1 deletion recipes/pydustmasker/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ source:
sha256: 03f875b3cdb595394eabed823d80d4da50d687f3ade4a017ff0159ce277ae331

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

Expand All @@ -35,3 +35,7 @@ about:
license_file: LICENSE
summary: "Python library for identification and masking of low-complexity regions in nucleotide sequences."

extra:
additional-platforms:
- linux-aarch64
- osx-arm64
martin-g marked this conversation as resolved.
Show resolved Hide resolved
Loading