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

Update .gitlab-ci.yml file to build x86_64 platform

parent 8b8b5605
No related branches found
No related tags found
No related merge requests found
......@@ -70,31 +70,70 @@ prebuild-i686:
extends: [".prebuild"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-docker-tools/dev-el6-gcc73-x86
variables:
NAME: "cmake-${PREBUILD_CMAKE_VERSION}-linux-i686"
PLATFORM: linux-i686
NAME: "cmake-${PREBUILD_CMAKE_VERSION}-${PLATFORM}"
prebuild-x86_64:
extends: [".prebuild"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-docker-tools/dev-el6-gcc73
variables:
PLATFORM: linux-x86_64
NAME: "cmake-${PREBUILD_CMAKE_VERSION}-${PLATFORM}"
linux-i686:
extends: [".build"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-docker-tools/dev-el6-gcc73-x86
variables:
PLATFORM: linux-i686
PREBUILD_NAME: "cmake-${PREBUILD_CMAKE_VERSION}-linux-i686"
NAME: "cmake-${CMAKE_VERSION}-linux-i686"
NAME: "cmake-${CMAKE_VERSION}-${PLATFORM}"
needs:
- prebuild-i686
linux-x86_64:
extends: [".build"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-docker-tools/dev-el6-gcc73
variables:
PLATFORM: linux-x86_64
PREBUILD_NAME: "cmake-${PREBUILD_CMAKE_VERSION}-linux-x86_64"
NAME: "cmake-${CMAKE_VERSION}-${PLATFORM}"
needs:
- prebuild-x86_64
test-i686:
extends: [".test"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-docker-tools/dev-el6-gcc73-x86
variables:
NAME: "cmake-${CMAKE_VERSION}-linux-i686"
PLATFORM: linux-i686
NAME: "cmake-${CMAKE_VERSION}-${PLATFORM}"
needs:
- linux-i686
test-x86_64:
extends: [".test"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-docker-tools/dev-el6-gcc73
variables:
PLATFORM: linux-x86_64
NAME: "cmake-${CMAKE_VERSION}-${PLATFORM}"
needs:
- linux-x86_64
package-i686:
extends: [".package"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-docker-tools/dev-el6-gcc73-x86
variables:
NAME: "cmake-${CMAKE_VERSION}-linux-i686"
PLATFORM: linux-i686
NAME: "cmake-${CMAKE_VERSION}-${PLATFORM}"
needs:
- linux-i686
- test-i686
package-x86_64:
extends: [".package"]
image: gitlab-registry.synchrotron-soleil.fr/software-control-system/containers/dev-docker-tools/dev-el6-gcc73
variables:
PLATFORM: linux-x86_64
NAME: "cmake-${CMAKE_VERSION}-${PLATFORM}"
needs:
- linux-x86_64
- test-x86_64
\ No newline at end of file
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