diff options
author | jaseg <git@jaseg.de> | 2022-02-06 22:33:19 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-02-06 22:33:19 +0100 |
commit | cac0ef4240236f40aa5b6da99718ba8fc48307a3 (patch) | |
tree | 1401e0c8f0488c86d33d010c34a5eee93e0a7ff7 | |
parent | fc0779c4f8173b501689602a0a786a66f2e67df9 (diff) | |
download | gerbonara-cac0ef4240236f40aa5b6da99718ba8fc48307a3.tar.gz gerbonara-cac0ef4240236f40aa5b6da99718ba8fc48307a3.tar.bz2 gerbonara-cac0ef4240236f40aa5b6da99718ba8fc48307a3.zip |
CI: WIPv0.9.6
-rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index adf830a..e049324 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,8 +24,7 @@ test:archlinux: stage: test image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest" script: - - pip3 install --user pytest - - ~/.local/bin/pytest -o 'testpaths=gerbonara/tests' -o 'norecursedirs=*' + - pytest -o 'testpaths=gerbonara/tests' -o 'norecursedirs=*' dependencies: - build:archlinux artifacts: @@ -38,7 +37,7 @@ docs:archlinux: stage: test image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest" script: - - ~/.local/bin/sphinx-build -E docs docs/_build + - sphinx-build -E docs docs/_build dependencies: - build:archlinux artifacts: @@ -54,7 +53,7 @@ publish:gerbonara: cache: {} script: - export TWINE_USERNAME TWINE_PASSWORD - - ~/.local/bin/twine upload dist/* + - twine upload dist/* dependencies: - build:archlinux only: @@ -66,7 +65,7 @@ pages: GIT_SUBMODULE_STRATEGY: none image: "registry.gitlab.com/gerbolyze/build-containers/archlinux:latest" script: - - ~/.local/bin/sphinx-build -E docs docs/_build + - sphinx-build -E docs docs/_build dependencies: - build:archlinux artifacts: |