diff options
author | mustiikhalil <mustii@mmk.one> | 2021-02-23 08:51:39 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 08:51:39 +0300 |
commit | ffc2ef77caeb6b04e89db952c65216982db44698 (patch) | |
tree | 7b9b5772cab1ee003c73ca2c0a23f8c78c8be5cf /.travis.yml | |
parent | 1da6f4f18bdc7f47cd84f58a427835f2b790cb29 (diff) | |
download | flatbuffers-ffc2ef77caeb6b04e89db952c65216982db44698.tar.gz flatbuffers-ffc2ef77caeb6b04e89db952c65216982db44698.tar.bz2 flatbuffers-ffc2ef77caeb6b04e89db952c65216982db44698.zip |
[CI] Adds Code Generation tests on Github Actions (#6482)
Moves check-grpc-generation to scripts
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index fb174fcf..c3c13465 100644 --- a/.travis.yml +++ b/.travis.yml @@ -114,7 +114,7 @@ matrix: -DFLATBUFFERS_CODE_SANITIZE=ON - cmake --build . --target all --clean-first -- -j${JOBS} - LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/google/grpc/install/lib ctest --extra-verbose --output-on-failure - - bash .travis/check-generate-code.sh + - bash scripts/check-generate-code.sh - language: cpp os: osx @@ -134,7 +134,7 @@ matrix: -DFLATBUFFERS_CODE_SANITIZE=ON - cmake --build . -- -j${JOBS} - DYLD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/google/grpc/install/lib ctest --extra-verbose --output-on-failure - - bash .travis/check-generate-code.sh + - bash scripts/check-generate-code.sh - <<: *conan-linux-master env: CONAN_GCC_VERSIONS=8 CONAN_DOCKER_IMAGE=conanio/gcc8 |