From ea5706096381c3becbbbda151e1f3cc86dba97f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rahu=CE=BB=20D=C3=A9?= Date: Mon, 1 May 2023 10:46:24 +0100 Subject: [PATCH] No linux aarch64 (#1550) * [#1524] remove linux-aarch64 dynamic binary build * [#1524] add changelog --- .circleci/script/gen_ci.clj | 11 +---------- CHANGELOG.md | 4 ++++ 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.circleci/script/gen_ci.clj b/.circleci/script/gen_ci.clj index fe58ab63..9f13584f 100644 --- a/.circleci/script/gen_ci.clj +++ b/.circleci/script/gen_ci.clj @@ -203,14 +203,6 @@ java -jar \"$jar\" --config .build/bb.edn --deps-root . release-artifact \"$refl :linux (unix shorted? false false "amd64" docker-executor-conf "large" linux-graalvm-home "linux") :linux-static (unix shorted? true true "amd64" docker-executor-conf "large" linux-graalvm-home "linux") - :linux-aarch64 (unix shorted? - false - false - "aarch64" - machine-executor-conf - "arm.large" - linux-graalvm-home - "linux") :linux-aarch64-static (unix shorted? true false "aarch64" machine-executor-conf "arm.large" linux-graalvm-home "linux") :mac (unix shorted? false false "amd64" mac-executor-conf "large" mac-graalvm-home "mac") @@ -222,12 +214,11 @@ java -jar \"$jar\" --config .build/bb.edn --deps-root . release-artifact \"$refl "linux" "linux-static" "mac" - "linux-aarch64" "linux-aarch64-static" {:deploy {:filters {:branches {:only "master"}} :requires ["jvm" "linux"]}} {:docker {:filters {:branches {:only "master"}} - :requires ["linux" "linux-static" "linux-aarch64"]}}]})))) + :requires ["linux" "linux-static"]}}]})))) (def skip-config {:skip-if-only [#".*.md$" diff --git a/CHANGELOG.md b/CHANGELOG.md index 615d72e6..ae58363b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ A preview of the next release can be installed from Berlin. Save the date and/or submit your babashka/clojure-related talk or workshop in the CfP! +## Unrelased + +- [#1524](https://github.com/babashka/babashka/issues/1524): Remove dynamic builds for linux-aarch64 ([@lispyclouds](https://github.com/lispyclouds)) + ## 1.3.179 (2023-04-26) - [#1544](https://github.com/babashka/babashka/issues/1544): `:local/root` in script-adjacent bb.edn should resolve relative to script