Skip to content

Commit

Permalink
Fix JS build
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Nov 3, 2021
1 parent f46f7b8 commit a43fbdc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ci/docker/debian-10-js.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ FROM ${arch}/node:${node}

ENV NODE_NO_WARNINGS=1

# install rsync for copying the generated documentation
RUN apt-get update -y -q && \
apt-get install -y -q --no-install-recommends rsync && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# TODO(kszucs):
# 1. add the files required to install the dependencies to .dockerignore
# 2. copy these files to their appropriate path
Expand Down
6 changes: 6 additions & 0 deletions ci/docker/debian-11-js.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ FROM ${arch}/node:${node}

ENV NODE_NO_WARNINGS=1

# install rsync for copying the generated documentation
RUN apt-get update -y -q && \
apt-get install -y -q --no-install-recommends rsync && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

# TODO(kszucs):
# 1. add the files required to install the dependencies to .dockerignore
# 2. copy these files to their appropriate path
Expand Down
3 changes: 2 additions & 1 deletion ci/scripts/js_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

set -ex

source_dir=${1}/js
arrow_dir=${1}
source_dir=${arrow_dir}/js
build_dir=${2}
with_docs=${3:-false}

Expand Down

0 comments on commit a43fbdc

Please sign in to comment.