Skip to content
Snippets Groups Projects
Commit 4b446298 authored by Patrick MADELA's avatar Patrick MADELA
Browse files

Update .gitlab-ci.yml file

parent ba51553b
No related branches found
No related tags found
No related merge requests found
Pipeline #1009 canceled
......@@ -4,6 +4,7 @@ variables:
stages:
- build
- test
.build-python:
stage: build
......@@ -28,7 +29,30 @@ stages:
paths:
- ${NAME}.zip
build-dev-el6-gcc44:
.test-python:
stage: test
script:
- ${PYTHON_ROOT}/bin/python --version | grep ${PYTHON_VERSION}
build:dev-el6-gcc44:
extends: [".build-python"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-el6-gcc44
variables:
OS: "linux-el6"
ARCH: "x86_64"
NAME: "python-${PYTHON_VERSION}-${OS}-${ARCH}"
PYTHON_ROOT: "${CI_PROJECT_DIR}/${NAME}"
build:dev-el6-gcc44-x86:
extends: [".build-python"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-el6-gcc44-x86
variables:
OS: "linux-el6"
ARCH: "i686"
NAME: "python-${PYTHON_VERSION}-${OS}-${ARCH}"
PYTHON_ROOT: "${CI_PROJECT_DIR}/${NAME}"
test:dev-el6-gcc44:
extends: [".build-python"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-el6-gcc44
variables:
......@@ -36,8 +60,10 @@ build-dev-el6-gcc44:
ARCH: "x86_64"
NAME: "python-${PYTHON_VERSION}-${OS}-${ARCH}"
PYTHON_ROOT: "${CI_PROJECT_DIR}/${NAME}"
dependencies:
- build:dev-el6-gcc44
build-dev-el6-gcc44-x86:
test:dev-el6-gcc44-x86:
extends: [".build-python"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-el6-gcc44-x86
variables:
......@@ -45,3 +71,5 @@ build-dev-el6-gcc44-x86:
ARCH: "i686"
NAME: "python-${PYTHON_VERSION}-${OS}-${ARCH}"
PYTHON_ROOT: "${CI_PROJECT_DIR}/${NAME}"
dependencies:
- build:dev-el6-gcc44-x86
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment