Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bignum-fuzzer] Fix latest build failure #2061

Merged
merged 1 commit into from
Dec 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/bignum-fuzzer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN add-apt-repository -y ppa:gophers/archive && apt-get update && apt-get insta
RUN ln -s /usr/lib/go-1.9/bin/go /usr/bin/go

# Install Rust nightly
RUN curl -s https://static.rust-lang.org/rustup.sh | sh -s --
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y

RUN git clone --depth 1 https:/guidovranken/bignum-fuzzer
RUN git clone --depth 1 https:/openssl/openssl
Expand Down
2 changes: 2 additions & 0 deletions projects/bignum-fuzzer/build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
source $HOME/.cargo/env

cd $SRC/openssl
if [[ $CFLAGS = *sanitize=memory* ]]
then
Expand Down