mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-03 04:21:13 +00:00
* Add C++ build testing with clang and gcc This adds Dockerfiles which test building flatc and the C++ library against clang and gcc. See discussion at #5119. It is derived from the Travis CI tooling. The GRPC tests are failing due to #5099 so those are commented out. These are run from the .travis.yml file rather than the tests/docker/languages folder because the builds may each take longer than 30 minutes and were hitting Travis timeouts. Parallel builds and build caching attempt to keep the build times low. * Add GCC 8.3 and Clang 7.0 with sanitizers into CI (based on #5130) - Add a docker based on Debian Buster. - Add C++ building scripts for the docker. - Leak-sanitizer requires SYS_PTRACE.
16 lines
367 B
Bash
Executable File
16 lines
367 B
Bash
Executable File
set -e
|
|
|
|
JOBS=${JOBS:-1}
|
|
config=$1
|
|
echo ""
|
|
echo "Build 'flatc' compiler for '$config'"
|
|
|
|
cmake . -DCMAKE_BUILD_TYPE=$config \
|
|
-DFLATBUFFERS_BUILD_FLATC=1 -DFLATBUFFERS_STATIC_FLATC=1 \
|
|
-DFLATBUFFERS_BUILD_TESTS=0 -DFLATBUFFERS_INSTALL=0
|
|
cmake --build . --target flatc --clean-first -- -j$JOBS
|
|
|
|
echo "Check generated code"
|
|
.travis/check-generate-code.sh
|
|
echo "Done"
|