mirror of
https://github.com/openziti/zrok.git
synced 2025-04-15 06:48:45 +02:00
also build the console in local dev cross-builder
This commit is contained in:
parent
32c6f07b3e
commit
251eb6ed31
2
.gitignore
vendored
2
.gitignore
vendored
@ -28,6 +28,8 @@ go.work
|
|||||||
go.work.sum
|
go.work.sum
|
||||||
zrok-venv
|
zrok-venv
|
||||||
|
|
||||||
|
# cache used by local dev cross-build script
|
||||||
|
/.npm
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# Stage 1: Install Node.js with nvm
|
||||||
FROM debian:bullseye-slim
|
FROM debian:bullseye-slim
|
||||||
#
|
#
|
||||||
# this file mirrors the build params used in the GitHub Actions and enables
|
# this file mirrors the build params used in the GitHub Actions and enables
|
||||||
@ -12,23 +13,31 @@ ARG go_root=/usr/local/go
|
|||||||
ARG go_cache=/usr/share/go_cache
|
ARG go_cache=/usr/share/go_cache
|
||||||
ARG uid=1000
|
ARG uid=1000
|
||||||
ARG gid=1000
|
ARG gid=1000
|
||||||
RUN apt-get -y update
|
RUN apt-get -y update \
|
||||||
RUN apt-get -y install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf gcc-aarch64-linux-gnu
|
&& apt-get -y install \
|
||||||
RUN apt-get -y install wget build-essential
|
gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf gcc-aarch64-linux-gnu \
|
||||||
|
wget build-essential
|
||||||
|
|
||||||
COPY ./linux-build.sh /usr/local/bin/
|
|
||||||
RUN wget -q https://go.dev/dl/${go_distribution_file}
|
RUN wget -q https://go.dev/dl/${go_distribution_file}
|
||||||
RUN tar -xzf ${go_distribution_file} -C /usr/local/
|
RUN tar -xzf ${go_distribution_file} -C /usr/local/
|
||||||
|
|
||||||
|
RUN wget -qO- https://deb.nodesource.com/setup_18.x | bash \
|
||||||
|
&& apt-get -y update \
|
||||||
|
&& apt-get -y install \
|
||||||
|
nodejs
|
||||||
|
|
||||||
RUN mkdir ${go_path} ${go_cache}
|
RUN mkdir ${go_path} ${go_cache}
|
||||||
RUN chown -R ${uid}:${gid} ${go_path} ${go_cache}
|
RUN chown -R ${uid}:${gid} ${go_path} ${go_cache}
|
||||||
|
|
||||||
|
COPY ./linux-build.sh /usr/local/bin/
|
||||||
|
|
||||||
USER ${uid}:${gid}
|
USER ${uid}:${gid}
|
||||||
ENV TARGETARCH=${TARGETARCH}
|
ENV TARGETARCH=${TARGETARCH}
|
||||||
ENV GOPATH=${go_path}
|
ENV GOPATH=${go_path}
|
||||||
ENV GOROOT=${go_root}
|
ENV GOROOT=${go_root}
|
||||||
ENV GOCACHE=${go_cache}
|
ENV GOCACHE=${go_cache}
|
||||||
ENV PATH=${go_path}/bin:${go_root}/bin:$PATH
|
ENV PATH=${go_path}/bin:${go_root}/bin:$PATH
|
||||||
|
|
||||||
RUN go install github.com/mitchellh/gox@latest
|
RUN go install github.com/mitchellh/gox@latest
|
||||||
WORKDIR /mnt
|
WORKDIR /mnt
|
||||||
ENTRYPOINT ["linux-build.sh"]
|
ENTRYPOINT ["linux-build.sh"]
|
||||||
|
@ -6,7 +6,10 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
|
||||||
set -o pipefail -e -u
|
set -o errexit
|
||||||
|
set -o nounset
|
||||||
|
set -o pipefail
|
||||||
|
set -o xtrace
|
||||||
|
|
||||||
# if no architectures supplied then default list of three
|
# if no architectures supplied then default list of three
|
||||||
if (( ${#} )); then
|
if (( ${#} )); then
|
||||||
@ -31,6 +34,16 @@ else
|
|||||||
PROCS_PER_JOB=0 # invokes gox default to use all CPUs-1
|
PROCS_PER_JOB=0 # invokes gox default to use all CPUs-1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
(
|
||||||
|
HOME=/tmp/builder
|
||||||
|
# Navigate to the "ui" directory and run npm commands
|
||||||
|
npm config set cache /mnt/.npm
|
||||||
|
cd ./ui/
|
||||||
|
mkdir -p $HOME
|
||||||
|
npm install
|
||||||
|
npm run build
|
||||||
|
)
|
||||||
|
|
||||||
for ARCH in ${JOBS[@]}; do
|
for ARCH in ${JOBS[@]}; do
|
||||||
GOX_CMD="
|
GOX_CMD="
|
||||||
gox \
|
gox \
|
||||||
|
Loading…
Reference in New Issue
Block a user