Skip to content

Commit fa03c3a

Browse files
starlark-rust: fix rustc version issues (#12404)
Closes: facebook/starlark-rust#128
1 parent 00a219c commit fa03c3a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

projects/starlark-rust/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@
1616

1717
FROM gcr.io/oss-fuzz-base/base-builder-rust
1818
RUN git clone --depth 1 https://github.com/facebookexperimental/starlark-rust.git starlark-rust
19+
RUN rustup update nightly
1920
WORKDIR starlark-rust
2021
COPY build.sh $SRC/

projects/starlark-rust/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
find . -name '*.star' -exec zip starlark_seed_corpus.zip {} \;
1919

2020
cd starlark
21-
cargo fuzz build -O
21+
cargo +nightly fuzz build -O
2222

2323
FUZZ_TARGET_OUTPUT_DIR=fuzz/target/x86_64-unknown-linux-gnu/release
2424
for f in fuzz/fuzz_targets/*.rs

0 commit comments

Comments
 (0)