diff options
author | Itamar <itamar8910@gmail.com> | 2020-09-06 21:08:18 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-09-06 21:36:36 +0200 |
commit | 1c20e684f34bded0002e178f66a63268095ac9d5 (patch) | |
tree | 78ef85a435b5fad7640e0e6211923be26d7a9196 /.travis.yml | |
parent | 542f665b27cdb4a502ccb6bdc4ba8c7ea7f37bdd (diff) | |
download | serenity-1c20e684f34bded0002e178f66a63268095ac9d5.zip |
Travis: Run script that checks for forbidden symbols in LibC
check-symbols.sh fails the build if undefined __cx_guard_* symbols are
found in LibC.
This will help us catch port breakage sooner.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 9eb469529b..39ad4027d0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,6 +49,7 @@ script: - cd Build - cmake .. -DBUILD_LAGOM=1 -DALL_THE_DEBUG_MACROS=1 - make -j2 +- Meta/check-symbols.sh - CTEST_OUTPUT_ON_FAILURE=1 make test - cd Meta/Lagom - DISABLE_DBG_OUTPUT=1 ./test-js |