From 5af2f56293db61be374ab066aa28f1e78a8a7d43 Mon Sep 17 00:00:00 2001 From: Cornelius Roemer Date: Tue, 16 Apr 2024 22:13:12 +0200 Subject: [PATCH] chore(ci): also update aarch64 in bioconda recipe --- scripts/publish_bioconda | 5 +++-- scripts/update-bioconda.py | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/publish_bioconda b/scripts/publish_bioconda index 3aa7914b0..3c777af50 100755 --- a/scripts/publish_bioconda +++ b/scripts/publish_bioconda @@ -28,9 +28,10 @@ THIS_DIR="$( export artifacts_dir="${THIS_DIR}/../artifacts" artifacts=( - 'nextclade-aarch64-apple-darwin' - 'nextclade-x86_64-apple-darwin' 'nextclade-x86_64-unknown-linux-gnu' + 'nextclade-aarch64-unknown-linux-gnu' + 'nextclade-x86_64-apple-darwin' + 'nextclade-aarch64-apple-darwin' ) mkdir -p "${artifacts_dir}" diff --git a/scripts/update-bioconda.py b/scripts/update-bioconda.py index 28cd589c1..f2e24a6ea 100755 --- a/scripts/update-bioconda.py +++ b/scripts/update-bioconda.py @@ -11,8 +11,9 @@ archs = { "linux64": "x86_64-unknown-linux-gnu", + "aarch64": "aarch64-unknown-linux-gnu", "osx and x86_64": "x86_64-apple-darwin", - "arm64": "aarch64-apple-darwin" + "osx and arm64": "aarch64-apple-darwin", } if __name__ == '__main__':