Skip to content
Snippets Groups Projects
Commit 682ba2e1 authored by Krzysztof Mochocki's avatar Krzysztof Mochocki
Browse files

Remove duplicated dist directory

parent 62833b5f
No related branches found
No related tags found
1 merge request!63Remove duplicated dist directory from artifacts
Pipeline #105154 passed
...@@ -155,13 +155,14 @@ variables: ...@@ -155,13 +155,14 @@ variables:
variables: variables:
GIT_STRATEGY: clone GIT_STRATEGY: clone
GIT_DEPTH: 0 # We need full history to get correct version (dynamic versioning) GIT_DEPTH: 0 # We need full history to get correct version (dynamic versioning)
DIST_DIR: "${PYPROJECT_DIR}/dist"
script: script:
- echo -e "${TXT_BLUE}Building python wheel...${TXT_CLEAR}" - echo -e "${TXT_BLUE}Building python wheel...${TXT_CLEAR}"
- ls -al - ls -al
- poetry -C "${PYPROJECT_DIR}" version - poetry -C "${PYPROJECT_DIR}" version
- poetry -C "${PYPROJECT_DIR}" build --format wheel - poetry -C "${PYPROJECT_DIR}" build --format wheel
- if [ -d "${PYPROJECT_DIR}/dist" ] && [ ! -d "dist" ]; then cp -r "${PYPROJECT_DIR}/dist" "dist"; fi - if [ ! -d "${DIST_DIR}" ] && [ -d "dist" ]; then cp -r "dist" "${DIST_DIR}"; fi
- ls -al dist/ - ls -al ${DIST_DIR}
after_script: after_script:
- WHEEL_BUILD_VERSION=$(poetry -C "${PYPROJECT_DIR}" version -s) - WHEEL_BUILD_VERSION=$(poetry -C "${PYPROJECT_DIR}" version -s)
- echo "WHEEL_BUILD_VERSION is ${WHEEL_BUILD_VERSION}" - echo "WHEEL_BUILD_VERSION is ${WHEEL_BUILD_VERSION}"
...@@ -169,8 +170,7 @@ variables: ...@@ -169,8 +170,7 @@ variables:
artifacts: artifacts:
expire_in: 1 week expire_in: 1 week
paths: paths:
- "${PYPROJECT_DIR}/dist" - "${DIST_DIR}"
- dist/
- build_wheel.env - build_wheel.env
reports: reports:
dotenv: build_wheel.env dotenv: build_wheel.env
......
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