mirror of https://github.com/google/oss-fuzz.git
Fix Rust nightly installation (#2061)
This commit is contained in:
parent
3df3b90ebb
commit
6b2eb45a5b
|
@ -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://github.com/guidovranken/bignum-fuzzer
|
||||
RUN git clone --depth 1 https://github.com/openssl/openssl
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
source $HOME/.cargo/env
|
||||
|
||||
cd $SRC/openssl
|
||||
if [[ $CFLAGS = *sanitize=memory* ]]
|
||||
then
|
||||
|
|
Loading…
Reference in New Issue