replace build by package and move test before package

This commit is contained in:
AleaJactaEst 2018-02-13 20:30:21 +01:00
parent e5fe6e5388
commit 96469f775d

View file

@ -21,63 +21,10 @@
stages: stages:
- build
- test - test
- package
- deploy - deploy
## Build
linux_source_package:
stage: build
tags:
- Docker
image: amd64/debian:9
script:
# Prepare environment
- apt-get update
- apt-get -y upgrade
- apt-get install -y python3 python3-setuptools python3-virtualenv python3-stdeb python3-all python3-coverage python3-pep8 python3-sphinx python3-pip graphviz python3-bcrypt python3-wheel
# Action
- make sdist
artifacts:
name: "khanat-$(echo $CI_BUILD_REF | head -c 7 )-$CI_PIPELINE_ID-pymanager-package-src"
paths:
- dist
linux_package:
stage: build
tags:
- Docker
image: amd64/debian:9
script:
# Prepare environment
- apt-get update
- apt-get -y upgrade
- apt-get install -y python3 python3-setuptools python3-virtualenv python3-stdeb python3-all python3-coverage python3-pep8 python3-sphinx python3-pip graphviz python3-bcrypt python3-wheel
# Action
- make bdist
artifacts:
name: "khanat-$(echo $CI_BUILD_REF | head -c 7 )-$CI_PIPELINE_ID-pymanager-package"
paths:
- dist
linux_package_wheel:
stage: build
tags:
- Docker
image: amd64/debian:9
script:
# Prepare environment
- apt-get update
- apt-get -y upgrade
- apt-get install -y python3 python3-setuptools python3-virtualenv python3-stdeb python3-all python3-coverage python3-pep8 python3-sphinx python3-pip graphviz python3-bcrypt python3-wheel
# Action
- python3 setup.py bdist_wheel --universal
artifacts:
name: "khanat-$(echo $CI_BUILD_REF | head -c 7 )-$CI_PIPELINE_ID-pymanager-package-whl"
paths:
- dist
expire_in: 1 week
## Test ## Test
linux_test: linux_test:
stage: test stage: test
@ -105,20 +52,73 @@ linux_coverage:
# Action # Action
- make coverage - make coverage
# codequality doesn't work ## Documentation
#codequality: linux_htmldoc:
# image: docker:latest stage: test
# variables: tags:
# DOCKER_DRIVER: overlay - Docker
# services: image: amd64/debian:9
# - docker:dind script:
# script: # Prepare environment
# - docker pull codeclimate/codeclimate - apt-get update
# - docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate:0.69.0 init - apt-get -y upgrade
# - docker run --env CODECLIMATE_CODE="$PWD" --volume "$PWD":/code --volume /var/run/docker.sock:/var/run/docker.sock --volume /tmp/cc:/tmp/cc codeclimate/codeclimate:0.69.0 analyze -f json > codeclimate.json || true - apt-get install -y python3 python3-setuptools python3-virtualenv python3-stdeb python3-all python3-coverage python3-pep8 python3-sphinx python3-pip graphviz python3-bcrypt python3-wheel
# artifacts: # Action
# paths: [codeclimate.json] - make htmldoc
## Package
linux_source_package:
stage: package
tags:
- Docker
image: amd64/debian:9
script:
# Prepare environment
- apt-get update
- apt-get -y upgrade
- apt-get install -y python3 python3-setuptools python3-virtualenv python3-stdeb python3-all python3-coverage python3-pep8 python3-sphinx python3-pip graphviz python3-bcrypt python3-wheel
# Action
- make sdist
artifacts:
name: "khanat-$(echo $CI_BUILD_REF | head -c 7 )-$CI_PIPELINE_ID-pymanager-package-src"
paths:
- dist
linux_package:
stage: package
tags:
- Docker
image: amd64/debian:9
script:
# Prepare environment
- apt-get update
- apt-get -y upgrade
- apt-get install -y python3 python3-setuptools python3-virtualenv python3-stdeb python3-all python3-coverage python3-pep8 python3-sphinx python3-pip graphviz python3-bcrypt python3-wheel
# Action
- make bdist
artifacts:
name: "khanat-$(echo $CI_BUILD_REF | head -c 7 )-$CI_PIPELINE_ID-pymanager-package"
paths:
- dist
linux_package_wheel:
stage: package
tags:
- Docker
image: amd64/debian:9
script:
# Prepare environment
- apt-get update
- apt-get -y upgrade
- apt-get install -y python3 python3-setuptools python3-virtualenv python3-stdeb python3-all python3-coverage python3-pep8 python3-sphinx python3-pip graphviz python3-bcrypt python3-wheel
# Action
- python3 setup.py bdist_wheel --universal
artifacts:
name: "khanat-$(echo $CI_BUILD_REF | head -c 7 )-$CI_PIPELINE_ID-pymanager-package-whl"
paths:
- dist
expire_in: 1 week
## Deploy ## Deploy