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:
authorPhilipp Hörist <philipp@hoerist.com>2023-04-16 20:25:05 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-04-16 20:25:30 +0300
commit8e54bc9a57b4056e068e207780c1f40f402cc7dc (patch)
tree8fb71a8a1e500dabbd6e492ac756825845e486ce
parent79ef0d0c312e9cf8678de117dcb2b238caa0b09a (diff)
ci: Don't use python3/pip3
-rw-r--r--.gitlab-ci.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e9711f41d..b59bbe0a7 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -34,9 +34,9 @@ test-pyright:
- changes:
- "**/*.py"
script:
- - pip3 install git+https://dev.gajim.org/gajim/python-nbxmpp.git
- - pip3 install git+https://dev.gajim.org/gajim/omemo-dr.git
- - pip3 install --config-settings=config=Gtk3,Gdk3,GtkSource4 git+https://github.com/pygobject/pygobject-stubs.git
+ - pip install git+https://dev.gajim.org/gajim/python-nbxmpp.git
+ - pip install git+https://dev.gajim.org/gajim/omemo-dr.git
+ - pip install --config-settings=config=Gtk3,Gdk3,GtkSource4 git+https://github.com/pygobject/pygobject-stubs.git
- pyright
interruptible: true
@@ -64,7 +64,7 @@ test-unittest:
image: gajim-test
stage: test
script:
- - pip3 install -I git+https://dev.gajim.org/gajim/python-nbxmpp.git
+ - pip install git+https://dev.gajim.org/gajim/python-nbxmpp.git
- coverage run --source=gajim -m unittest discover -s test -v
- coverage report -mi
- coverage xml -i
@@ -85,7 +85,7 @@ build-unix:
- if: '$NIGHTLY_BUILD'
- if: '$CI_COMMIT_TAG'
script:
- - python3 -m build
+ - python -m build
artifacts:
name: "gajim-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHA"
@@ -302,7 +302,7 @@ publish-website:
- git clone git@dev.gajim.org:gajim/website.git
- cd website
- git checkout master
- - python3 ./scripts/bump_version.py $CI_COMMIT_TAG
+ - python ./scripts/bump_version.py $CI_COMMIT_TAG
- git diff
- git add -u
- git commit -m "Release Gajim $CI_COMMIT_TAG"