Merge pull request #1170 from sureshsundriyal/master

[arm] Allow creating arm containers.
pull/1172/head
Tim Stack 12 months ago committed by GitHub
commit 981dfa3b46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,5 @@
FROM --platform=linux/amd64 alpine:3.16
ARG ARCH=amd64
FROM $ARCH/alpine:3.16
LABEL com.github.actions.name="C++ MUSL Builder Slim"
LABEL com.github.actions.description="Provides a C++ MUSL environment"

@ -2,7 +2,13 @@
set -Eeuxo pipefail
cd $GITHUB_WORKSPACE
if [ -z ${GITHUB_WORKSPACE:-} ]; then
git clone https://github.com/tstack/lnav.git
cd lnav
else
cd ${GITHUB_WORKSPACE}
fi
./autogen.sh
mkdir lbuild
cd lbuild

Loading…
Cancel
Save