X-Git-Url: http://nitlanguage.org diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9e61e33..d24d5bd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -39,7 +39,7 @@ after_script: - export CCACHE_DIR=$PWD/.ccache - ccache -s - du -sh .gradle || true - - git status --ignored + - git status --ignored || true - date - tail status.txt @@ -292,6 +292,22 @@ build_oot: # MISC ############################################################## +check_requirments: + stage: more_test + image: debian:buster + before_script: + - date # cancel the default `before_script`, an empty list does nothing + script: # from the README + - apt-get update && apt-get install --yes --no-install-recommends build-essential ccache libgc-dev libunwind-dev pkg-config + - make + - bin/nitc examples/hello_world.nit + - ./hello_world + - . misc/nit_env.sh install + - nitc examples/hello_world.nit + - ./hello_world + - apt-get update && apt-get install --yes --no-install-recommends graphviz libcurl4-openssl-dev libevent-dev libmongoc-dev + - make more + bootstrap_full: stage: more_test dependencies: @@ -360,6 +376,16 @@ build_doc: paths: - nitdoc.out +build_manual: + stage: more_test + script: + - apt-get update && apt-get install --yes --no-install-recommends pandoc texlive texlive-latex-extra lmodern + - make -C doc/manual + artifacts: + paths: + - doc/manual/*.pdf + - doc/manual/*.epub + nitmetrics: stage: more_test dependencies: @@ -381,8 +407,6 @@ build_catalog: - ./oot.sh pre-build - cd .. - nitcatalog -d catalog.out lib/ examples/ contrib/ contrib/oot/ - dependencies: - - build_more_tools artifacts: paths: - catalog.out @@ -405,3 +429,14 @@ test_full_nitcs_macos: - macos dependencies: - build_tools_macos + +bench_old: + stage: more_test + tags: + - perf + dependencies: + - build_tools + script: + - benchmarks/bench_old.sh + allow_failure: true # time is unreliable. manual check required + services: []