Skip to content
Snippets Groups Projects
Commit 1c3acb7a authored by Moul's avatar Moul
Browse files

[ci] Remove useless runtime dependencies installation

- for build, checks, releases, and doc jobs
parent b4f22dcf
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,6 @@ check: ...@@ -77,7 +77,6 @@ check:
stage: test stage: test
script: script:
- pyenv shell 3.6.4 # black install needs python 3.6.x minimum - pyenv shell 3.6.4 # black install needs python 3.6.x minimum
- pip install -r requirements.txt
- pip install -r requirements_dev.txt - pip install -r requirements_dev.txt
- make mypy - make mypy
- make pylint - make pylint
...@@ -88,7 +87,6 @@ build: ...@@ -88,7 +87,6 @@ build:
- .changes - .changes
stage: build stage: build
script: script:
- pip install -r requirements.txt
- pip install -r requirements_deploy.txt - pip install -r requirements_deploy.txt
- make build - make build
...@@ -99,7 +97,6 @@ release: ...@@ -99,7 +97,6 @@ release:
stage: release stage: release
when: manual when: manual
script: script:
- pip install -r requirements.txt
- pip install -r requirements_deploy.txt - pip install -r requirements_deploy.txt
- make build - make build
- make deploy PYPI_LOGIN=${PYPI_LOGIN} PYPI_PASSWORD=${PYPI_PASSWORD} - make deploy PYPI_LOGIN=${PYPI_LOGIN} PYPI_PASSWORD=${PYPI_PASSWORD}
...@@ -112,7 +109,6 @@ release_test: ...@@ -112,7 +109,6 @@ release_test:
stage: release stage: release
when: manual when: manual
script: script:
- pip install -r requirements.txt
- pip install -r requirements_deploy.txt - pip install -r requirements_deploy.txt
- make build - make build
- make deploy_test PYPI_TEST_LOGIN=${PYPI_TEST_LOGIN} PYPI_TEST_PASSWORD=${PYPI_TEST_PASSWORD} - make deploy_test PYPI_TEST_LOGIN=${PYPI_TEST_LOGIN} PYPI_TEST_PASSWORD=${PYPI_TEST_PASSWORD}
...@@ -126,7 +122,6 @@ pages: ...@@ -126,7 +122,6 @@ pages:
- master - master
script: script:
- pyenv shell 3.6.4 # black install needs python 3.6.x minimum - pyenv shell 3.6.4 # black install needs python 3.6.x minimum
- pip install -r requirements.txt
- pip install -r requirements_dev.txt - pip install -r requirements_dev.txt
- make docs - make docs
- mv docs/_build/html public - mv docs/_build/html public
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment