aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred SUmner <jarred@jarredsumner.com> 2021-12-21 20:33:36 -0800
committerGravatar Jarred SUmner <jarred@jarredsumner.com> 2021-12-21 20:33:36 -0800
commitfecfb784ee640d7b8120918b456c31363e7745a6 (patch)
treecaf98b35b1b5c43101b9272768658cff9500f449
parent5a7014a4181ac703207258f2bed8f598b54c0e95 (diff)
downloadbun-fecfb784ee640d7b8120918b456c31363e7745a6.tar.gz
bun-fecfb784ee640d7b8120918b456c31363e7745a6.tar.zst
bun-fecfb784ee640d7b8120918b456c31363e7745a6.zip
Run tests
Diffstat (limited to '')
-rw-r--r--Dockerfile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index b6fec71ca..7d0d3bb58 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -72,11 +72,11 @@ RUN wget https://github.com/unicode-org/icu/releases/download/release-66-1/icu4c
cd icu/source && \
./configure --enable-static --disable-shared && \
make -j$(nproc) && \
- cp lib/libicudata.a /home/ubuntu/bun/src/deps && \
- cp lib/libicui18n.a /home/ubuntu/bun/src/deps && \
- cp lib/libicuio.a /home/ubuntu/bun/src/deps && \
- cp lib/libicutu.a /home/ubuntu/bun/src/deps && \
- cp lib/libicuuc.a /home/ubuntu/bun/src/deps
+ cp lib/libicudata.a /home/ubuntu/bun/src/deps/libicudata.a && \
+ cp lib/libicui18n.a /home/ubuntu/bun/src/deps/libicui18n.a && \
+ cp lib/libicuio.a /home/ubuntu/bun/src/deps/libicuio.a && \
+ cp lib/libicutu.a /home/ubuntu/bun/src/deps/libicutu.a && \
+ cp lib/libicuuc.a /home/ubuntu/bun/src/deps/libicuuc.a
ENV PATH "/home/ubuntu/zig:$PATH"
ENV JSC_BASE_DIR $WEBKIT_OUT_DIR
@@ -91,4 +91,4 @@ RUN make jsc-bindings-headers
RUN make jsc-bindings-mac
RUN make identifier-cache
-RUN make release \ No newline at end of file
+RUN make release test-all \ No newline at end of file