cicd: add python env volume

This commit is contained in:
light7734 2024-10-14 14:13:39 +03:30
parent f9a805c2fa
commit 0de981636c
Signed by: light7734
GPG Key ID: 37FDF7099B2AB7A7
1 changed files with 3 additions and 3 deletions

View File

@ -11,9 +11,6 @@ volumes:
host: host:
path: /var/run/docker.sock path: /var/run/docker.sock
workspace:
path: /opt
services: services:
- name: docker - name: docker
image: docker:dind image: docker:dind
@ -42,6 +39,9 @@ steps:
- name: setup_conan - name: setup_conan
image: ubuntu_amd64:latest image: ubuntu_amd64:latest
volumes:
- name: python_env
path: /opt/venv/
pull: if-not-exists pull: if-not-exists
environment: environment:
CONAN_REVISIONS_ENABLED: "1" CONAN_REVISIONS_ENABLED: "1"