mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
This runs a script in TravisCI that executes a bunch of small Docker image scripts to test the language ports in isolated environments. This allows us to test multiple language versions with little additional complexity. Covers: + Java OpenJDK 10.0.2 + Java OpenJDK 11.0.1 + Node 10.13.0 + Node 11.2.0 + Python CPython 2.7.15 + Python CPython 3.7.1 + Rust 1.30.1
10 lines
210 B
Docker
10 lines
210 B
Docker
FROM debian:9.6-slim as base
|
|
RUN apt -qq update >/dev/null
|
|
RUN apt -qq install -y cmake make build-essential >/dev/null
|
|
FROM base
|
|
WORKDIR /code
|
|
ADD . .
|
|
RUN cmake -G "Unix Makefiles"
|
|
RUN make flatc
|
|
RUN ls flatc
|