mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
* Fix miri problems by assuming alignment is 1 in rust * Removed is_aligned fn from rust verifier. * Add back is_aligned, but make it w.r.t. buffer[0] * touch unused variable * touch unused variable * +nightly * Move Rust miri testing into its own docker * fix bash * missing one endian conversion * fix endianness2 * format stuff Co-authored-by: Casper Neo <cneo@google.com>
9 lines
188 B
Docker
9 lines
188 B
Docker
FROM rustlang/rust:nightly-stretch-slim as base
|
|
WORKDIR /code
|
|
ADD . .
|
|
RUN cp flatc_debian_stretch flatc
|
|
WORKDIR /code/tests
|
|
RUN rustc --version
|
|
RUN export RUST_NIGHTLY=1
|
|
RUN ./RustTest.sh
|