Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2021-01-03 14:50:54 +0300
committerlovetox <philipp@hoerist.com>2021-01-03 14:50:54 +0300
commit0af407571b8cc4cd15512c3d737853f60b5b2a08 (patch)
tree5964e6cd2f4404d80424ec621d5d272b4bec5b7a
parentd3465a76befc07981cdd59abe6c9a440b446aef9 (diff)
Stop running CIgajim_1.2
-rw-r--r--.gitlab-ci.yml50
1 files changed, 0 insertions, 50 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 1d2cda639..000000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,50 +0,0 @@
-before_script:
- - sudo apt-get update -qq && sudo apt-get install -y -qq libtool pkg-config gir1.2-gtk-3.0 gir1.2-soup-2.4 python3-gi python3-cairo
- - sudo apt-get build-dep -y -qq gajim-default-nightly
-
-stages:
- - test
- - build
-
-run-tests:
- stage: test
- script:
- - rm -rf civenv-master
- - virtualenv -p python3 --system-site-packages civenv
- - . ./civenv/bin/activate
- - pip3 install -I mypy
- - pip3 install -I git+https://dev.gajim.org/gajim/python-nbxmpp.git@master
- - pip3 install -I pylint==2.4.4
- - pip3 install -I codespell
- - mypy -V
- - mypy gajim
- - scripts/dev/pylint-ci.sh --jobs=2 gajim
- - python3 -m unittest discover -s test/no_gui -v
- - codespell -I codespell.conf --skip="*__pycache__*,gajim/data/icons,gajim/data/sounds,gajim/data/emoticons" gajim
- - deactivate
- - rm -rf civenv-master
-
-run-appdata:
- stage: test
- script:
- - appstream-util validate data/org.gajim.Gajim.appdata.xml.in
-
-run-build:
- stage: build
- script:
- - python3 setup.py sdist
- - cd dist
- - GF=$(basename gajim-* .tar.gz)
- - gzip -d $GF.tar.gz
- - mkdir -p $GF/gajim/data/plugins/
- - curl -O https://ftp.gajim.org/plugins_1/plugin_installer.zip
- - unzip plugin_installer.zip -d $GF/gajim/data/plugins/
- - rm plugin_installer.zip
- - tar -uf $GF.tar $GF
- - gzip $GF.tar
-
- artifacts:
- name: "gajim-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHA"
- expire_in: 1 week
- paths:
- - dist/gajim-*.tar.gz