X-Git-Url: http://nitlanguage.org diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c7b8c3e..51f93e3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -253,7 +253,6 @@ test_contribs: - misc/jenkins/check_contrib.sh all check - grep 'error message' *.xml > status.txt || true - test ! -s status.txt # no lines, no errors - allow_failure: true test_contribs_android: stage: more_test @@ -262,8 +261,13 @@ test_contribs_android: script: - misc/jenkins/check_contrib.sh android - grep 'error message' *.xml > status.txt || true - - mkdir -p apk - - find . -name '*.apk' -exec cp {} apk/ ";" + - mkdir -p apk/debug + - find . -name '*.apk' -exec mv {} apk/debug/ ";" + - test ! -s status.txt # no lines, no errors + - misc/jenkins/check_contrib.sh android-release + - grep 'error message' *.xml > status.txt || true + - mkdir -p apk/release + - find . -name '*.apk' -exec mv {} apk/release ";" - test ! -s status.txt # no lines, no errors artifacts: paths: @@ -278,8 +282,7 @@ build_oot: - cd contrib - ./oot.sh all - grep 'error message' *.xml > ../status.txt || true - - test ! -s ../status.txt # no lines, no errors - allow_failure: true + # Errors are somewhat expected # MISC ############################################################## @@ -307,7 +310,6 @@ bench_fast: - benchmarks/*.dat - benchmarks/*.gnu when: always - allow_failure: true # MORE TOOLS ######################################################## @@ -326,6 +328,21 @@ build_more_tools: - src/version.nit - src/nitc_0 +valgrind: + stage: more_test + dependencies: + - build_more_tools + script: + - mkdir -p valgrind.out + - nitc src/nitc.nit # To warm-up the cache + - src/valgrind.sh --callgrind-out-file=valgrind.out/nitc.nitc.out nitc src/nitc.nit -vv + - callgrind_annotate valgrind.out/nitc.nitc.out > valgrind.out/nitc.nitc.txt + - src/valgrind.sh --callgrind-out-file=valgrind.out/niti.niti.out nit -- src/nit.nit tests/base_simple3.nit -vv + - callgrind_annotate valgrind.out/niti.niti.out > valgrind.out/niti.niti.txt + artifacts: + paths: + - valgrind.out + build_doc: stage: more_test dependencies: