Skip to content

Commit

Permalink
Attempt a musl-aarch64 build of lychee
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx committed Apr 7, 2024
1 parent fb1f34f commit 1088cce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/lychee/compile-alpine-amd64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ set -euo pipefail
# _build-musl-*.yml always passes the package version as the first argument.
PKG_VER="${1}"

SAME_DIR="$(realpath "${BASH_SOURCE[0]%/*}")"

# shellcheck disable=SC1091
source ./compile-alpine.sh "${PKG_VER}" "amd64"
source "${SAME_DIR}/compile-alpine.sh" "${PKG_VER}" "amd64"
4 changes: 3 additions & 1 deletion packages/lychee/compile-alpine-arm64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ set -euo pipefail
# _build-musl-*.yml always passes the package version as the first argument.
PKG_VER="${1}"

SAME_DIR="$(realpath "${BASH_SOURCE[0]%/*}")"

# shellcheck disable=SC1091
source ./compile-alpine.sh "${PKG_VER}" "arm64"
source "${SAME_DIR}/compile-alpine.sh" "${PKG_VER}" "arm64"

0 comments on commit 1088cce

Please sign in to comment.