Skip to content
Snippets Groups Projects
Commit b3b20672 authored by Quang tru HUYNH's avatar Quang tru HUYNH
Browse files

fix artifact extraction

parent b1f7a8c4
No related branches found
No related tags found
No related merge requests found
...@@ -18,10 +18,14 @@ build: ...@@ -18,10 +18,14 @@ build:
- docker push "$CI_REGISTRY_IMAGE:$CI_BUILD_REF_NAME" - docker push "$CI_REGISTRY_IMAGE:$CI_BUILD_REF_NAME"
extract: extract:
stage: extract # same name for sequentiel treatment (extract after build)
stage: build
image: registry-gitlab.pasteur.fr/tru/docker-centos7-tensorflow:master image: registry-gitlab.pasteur.fr/tru/docker-centos7-tensorflow:master
script: script:
- date - mkdir $CI_PROJECT_DIR/pkg
# can not ln (cross link not allowed|possible) -> cp
- cp /build/tensorflow_pkg/* $CI_PROJECT_DIR/pkg/
artifacts: artifacts:
paths: paths:
- ../../../../../../../../build/tensorflow_pkg/tensorflow-1.0.1-cp27-none-linux_x86_64.whl # relative to $CI_PROJECT_DIR, can't ../../..
- pkg/*.whl
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