diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-10-12 23:07:15 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-10-12 23:07:15 +0300 |
commit | c93ad1a9253759f44299a9fe704b01ab3844cc08 (patch) | |
tree | beec8024cdf2f37a19c08ff1ff9ba9aae001d746 /.gitlab-ci.yml | |
parent | a509d5277d404ac2bcbda3888314ccf5775cf3e6 (diff) | |
download | plus-c93ad1a9253759f44299a9fe704b01ab3844cc08.tar.gz plus-c93ad1a9253759f44299a9fe704b01ab3844cc08.tar.bz2 plus-c93ad1a9253759f44299a9fe704b01ab3844cc08.tar.xz plus-c93ad1a9253759f44299a9fe704b01ab3844cc08.zip |
Remove site related builds from .gitlab-ci.yml
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 06103345f..b87fd6a7c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,6 @@ stages: - prebuild - build - - stats # with :; prevent from run it on windows before_script: @@ -491,36 +490,6 @@ gcc-7_sanitize_i386: tags: - docker -gcc-7_tests_gcov: - stage: build - script: - - ./tools/ci/jobs/gcc7_tests_gcov.sh --without-dyecmd --without-manaplusgame - <<: *job-push - variables: - PACKAGES: gcc-7 g++-7 - make autoconf automake autopoint gettext - libxml2-dev libcurl4-gnutls-dev libpng-dev - libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev - gcovr - valgrind - tags: - - docker - -gcc-7_sdl2_tests_gcov: - stage: build - script: - - ./tools/ci/jobs/gcc7_sdl2_tests_gcov.sh --without-dyecmd --without-manaplusgame - <<: *job-push - variables: - PACKAGES: gcc-7 g++-7 - make autoconf automake autopoint gettext - libxml2-dev libcurl4-gnutls-dev libpng-dev - libsdl2-dev libsdl2-gfx-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-net-dev libsdl2-ttf-dev - gcovr - valgrind - tags: - - docker - gcc-7_lto: stage: build script: @@ -816,60 +785,3 @@ gcc-7_openglerrors: libxml2-dev libcurl4-gnutls-dev libpng-dev libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev gdb valgrind netcat-openbsd procps - -doxygen: - stage: build - script: - - ./tools/ci/jobs/doxygen.sh - artifacts: - paths: - - doxygen - expire_in: 3 week - when: always - dependencies: [] - variables: - PACKAGES: doxygen graphviz - libxml2-dev libcurl4-gnutls-dev libpng-dev - libsdl-gfx1.2-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-net1.2-dev libsdl-ttf2.0-dev - tags: - - docker - only: - - master - -gitstats: - stage: build - script: - - ./tools/ci/jobs/gitstats.sh - artifacts: - paths: - - stats - expire_in: 3 week - when: always - dependencies: [] - variables: - GIT_DEPTH: "100000" - PACKAGES: python zlib1g git-core gnuplot - tags: - - docker - only: - - master - -# stats - -pages: - stage: stats - script: - - ./tools/ci/jobs/pages.sh - dependencies: - - doxygen - - gitstats - - gcc-7_tests_gcov - - gcc-7_sdl2_tests_gcov - variables: - PACKAGES: git-core python - artifacts: - paths: - - public - expire_in: 3 week - only: - - master |