Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cmake
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Devtools
cmake
Commits
8ed1c451
Commit
8ed1c451
authored
1 year ago
by
MADELA Patrick
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+44
-5
44 additions, 5 deletions
.gitlab-ci.yml
with
44 additions
and
5 deletions
.gitlab-ci.yml
+
44
−
5
View file @
8ed1c451
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment