From f5836b901fc55f2344588286fffc2222b4bd42df Mon Sep 17 00:00:00 2001 From: Brandon Ording Date: Sat, 23 Nov 2024 13:17:45 -0500 Subject: [PATCH] Tweaks --- .github/workflows/ci.yml | 2 -- Dockerfile.linux | 5 ++--- Dockerfile.linux-musl | 2 +- README.md | 4 +++- dockerbuild.sh | 13 +++---------- 5 files changed, 9 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 72382304..48ee9ae8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,8 +39,6 @@ jobs: name: linux-arm - os: ubuntu-24.04 name: linux-ppc64le - - os: ubuntu-24.04 - name: linux-musl-ppc64le - os: macos-13 name: osx-x64 - os: macos-13 diff --git a/Dockerfile.linux b/Dockerfile.linux index 7bf83726..4421da3d 100644 --- a/Dockerfile.linux +++ b/Dockerfile.linux @@ -1,10 +1,9 @@ FROM bording/crossbuild ARG ARCH='amd64' -ARG CC_ARCH='amd64' -ENV CROSS_TRIPLE=${CC_ARCH} +ENV CROSS_TRIPLE=${ARCH} RUN apt update && apt -y install pkg-config WORKDIR /nativebinaries COPY . /nativebinaries/ -CMD ["/bin/bash", "-c", "./build.libgit2.sh"] +CMD ["/bin/bash", "-c", "./build.libgit2.sh"] \ No newline at end of file diff --git a/Dockerfile.linux-musl b/Dockerfile.linux-musl index 76341f81..1cfa1e4e 100644 --- a/Dockerfile.linux-musl +++ b/Dockerfile.linux-musl @@ -5,4 +5,4 @@ RUN apk add --no-cache bash build-base cmake WORKDIR /nativebinaries COPY . /nativebinaries/ -CMD ["/bin/bash", "-c", "./build.libgit2.sh"] +CMD ["/bin/bash", "-c", "./build.libgit2.sh"] \ No newline at end of file diff --git a/README.md b/README.md index 313b85a1..a6f68879 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,9 @@ the following platforms: - Windows (x86, x64, arm64) - macOS (x64, arm64) - - Linux (x64, arm, arm64, ppc64le) for both musl and glibc + - Linux + - glibc: (x64, arm, arm64, ppc64le) + - musl: (x64, arm, arm64) [lg2s-nb]: https://www.nuget.org/packages/LibGit2Sharp.NativeBinaries [lg2]: https://libgit2.github.com/ diff --git a/dockerbuild.sh b/dockerbuild.sh index 90373ccc..81bb34ee 100755 --- a/dockerbuild.sh +++ b/dockerbuild.sh @@ -5,19 +5,12 @@ echo "building for $RID" if [[ $RID =~ arm64 ]]; then arch="arm64" - cc_arch="arm64" elif [[ $RID =~ arm ]]; then arch="armhf" - cc_arch="armhf" -elif [[ $RID == linux-ppc64le ]]; then - arch="ppc64le" - cc_arch="powerpc64le" -elif [[ $RID == linux-musl-ppc64le ]]; then - arch="ppc64le" - cc_arch="ppc64le" +elif [[ $RID =~ ppc64le ]]; then + arch="powerpc64le" else arch="amd64" - cc_arch="amd64" fi if [[ $RID == linux-musl* ]]; then @@ -26,7 +19,7 @@ else dockerfile="Dockerfile.linux" fi -docker buildx build -t $RID -f $dockerfile --build-arg ARCH=$arch --build-arg CC_ARCH=$cc_arch . +docker buildx build -t $RID -f $dockerfile --build-arg ARCH=$arch docker run -t -e RID=$RID --name=$RID $RID