diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-14 01:17:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-14 01:54:32 +0300 |
commit | 5921eb206fdd693393802e1af9d9121db074ca85 (patch) | |
tree | 91f30b49411c74a763ac552b161d62e32f44f5bc | |
parent | eb27e893b66af09b41dd1a668fe7a25fa65d04d0 (diff) | |
download | plus-5921eb206fdd693393802e1af9d9121db074ca85.tar.gz plus-5921eb206fdd693393802e1af9d9121db074ca85.tar.bz2 plus-5921eb206fdd693393802e1af9d9121db074ca85.tar.xz plus-5921eb206fdd693393802e1af9d9121db074ca85.zip |
Add ci unit tests builds for fedora rawhide.
But for now disabled, because need time for fedora mirrors to update.
-rw-r--r-- | .gitlab-ci.yml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d7b9b762b..8bf02067c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1409,6 +1409,30 @@ gcc-5_tarball: 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 +.fedora_gcc-snapshot_tests: + stage: build + script: + - ./tools/ci/jobs/gccsnapshot_tests.sh --without-dyecmd --without-manaplusgame + <<: *job-shared + image: fedora:rawhide + variables: + PMUPDATE: "dnf install --refresh -y @development-tools" + PMINSTALL: "dnf install -y bash tar findutils gcc gcc-c++ make libpng-devel libcurl-devel libxml2-devel gcc physfs-devel gcc SDL-devel SDL_net-devel SDL_image-devel SDL_ttf-devel SDL_mixer-devel SDL_gfx-devel zlib-devel gettext-devel automake autoconf valgrind" + tags: + - docker + +.fedora_gcc-snapshot_sdl2_tests: + stage: build + script: + - ./tools/ci/jobs/gccsnapshot_tests.sh --with-sdl2 --without-dyecmd --without-manaplusgame + <<: *job-shared + image: fedora:rawhide + variables: + PMUPDATE: "dnf install --refresh -y @development-tools" + PMINSTALL: "dnf install -y bash tar findutils mesa-libGL-devel gcc gcc-c++ make libpng-devel libcurl-devel libxml2-devel gcc physfs-devel gcc SDL2-devel SDL2_net-devel SDL2_image-devel SDL2_ttf-devel SDL2_mixer-devel SDL2_gfx-devel zlib-devel gettext-devel automake autoconf valgrind" + tags: + - docker + fedora_gcc-snapshot: stage: build script: @@ -1424,7 +1448,7 @@ fedora_gcc-snapshot: fedora_gcc-snapshot_sdl2: stage: build script: - - ./tools/ci/jobs/gccsnapshot_sdl2.sh + - ./tools/ci/jobs/gccsnapshot.sh --with-sdl2 <<: *job-shared image: fedora:rawhide variables: |