gajim-plural/.gitlab-ci.yml

58 lines
1.6 KiB
YAML
Raw Permalink Normal View History

2017-08-09 21:12:15 +02:00
before_script:
2018-12-05 21:25:18 +01:00
- sudo apt-get update -qq && sudo apt-get install -y -qq libtool pkg-config gir1.2-gtk-3.0 python3-gi python3-cairo
2017-08-09 21:12:15 +02:00
- sudo apt-get build-dep -y -qq gajim-default-nightly
stages:
- test
- build
2018-12-05 21:25:18 +01:00
run-tests:
2018-09-11 22:46:57 +02:00
stage: test
script:
2018-12-05 21:25:18 +01:00
- rm -rf civenv-master
- virtualenv --system-site-packages civenv
- . ./civenv/bin/activate
- pip3 install mypy
- pip3 install nbxmpp
- pip3 install pylint==2.1.1
- mypy gajim
- scripts/dev/pylint-ci.sh --jobs=2 gajim
2018-12-05 21:25:18 +01:00
- python3 setup.py test -s test.no_gui
- deactivate
- rm -rf civenv-master
2017-08-23 23:07:05 +02:00
2018-10-25 11:59:41 +02:00
run-appdata:
stage: test
script:
- appstream-util validate data/org.gajim.Gajim.appdata.xml.in
2017-08-09 21:12:15 +02:00
run-build:
stage: build
script:
2017-09-05 00:16:09 +02:00
- python3 setup.py sdist
- cd dist
2017-08-09 21:12:15 +02:00
- export FN="gajim-default-"$(date +%F)".tar"
- mv gajim-*.tar.gz $FN.gz
- mkdir tmp_add_plugins
- mv $FN.gz tmp_add_plugins/
- cd tmp_add_plugins/
- tar xzf $FN.gz
- rm $FN.gz
- export GF=$(find . -maxdepth 1 -type d -name 'gajim-*')
- mkdir -p $GF/gajim/data/plugins/
- cd $GF/gajim/data/plugins/
2017-08-09 21:12:15 +02:00
- curl -O https://ftp.gajim.org/plugins_1/plugin_installer.zip
- unzip plugin_installer.zip
- rm plugin_installer.zip
- cd ../../../..
2017-08-09 21:12:15 +02:00
- tar czf ../$FN.gz gajim-*
- cd ..
- rm -rf tmp_add_plugins
2017-08-09 22:21:48 +02:00
- scp $FN.gz panoramix:/var/www/gajim/downloads/snap/ci/gajim-default-$CI_COMMIT_SHA.tar.gz
2017-08-09 21:12:15 +02:00
artifacts:
name: "gajim-default-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHA"
expire_in: 1 week
paths:
2018-12-05 21:25:18 +01:00
- gajim-default-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHA.tar.gz