Skip to content

Commit 50c3616

Browse files
committed
Use make install without -j 4 for openssl step
On GitHub workflows this seems to be unreliable sometimes, it randomly fails for some targets.
1 parent 05c0a9d commit 50c3616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ RUN export CC=$TARGET_CC && \
9898
tar xzf openssl-$VERS.tar.gz && cd openssl-$VERS && \
9999
./Configure $OPENSSL_ARCH -fPIC --prefix=$TARGET_HOME && \
100100
make depend && \
101-
make && sudo make install -j 4 && \
101+
make && sudo make install && \
102102
cd .. && rm -rf openssl-$VERS.tar.gz openssl-$VERS checksums.txt
103103

104104
ENV OPENSSL_DIR=$TARGET_HOME/ \

0 commit comments

Comments
 (0)