Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
38
Issue boards
Milestones
Wiki
Code
Merge requests
30
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!567
create new experimental release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
create new experimental release
master
into
experimental_rel
Overview
0
Commits
13
Pipelines
2
Changes
13
Merged
Eleni Mathioulaki
requested to merge
master
into
experimental_rel
8 months ago
Overview
0
Commits
13
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Viewing commit
7c170ea2
Prev
Next
Show latest version
1 file
+
43
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
7c170ea2
feat: add build jobs for dev CINECA cluster
· 7c170ea2
Eleni Mathioulaki
authored
8 months ago
.gitlab-ci.yml
+
43
−
3
Options
@@ -59,6 +59,27 @@ deploy-int-release-dev-cscs:
SPACK_ENV
:
test
RELEASE_NAME
:
EBRAINS-test
resource_group
:
shared-NFS-mount-dev-cscs
tags
:
# this is just to ensure that the two jobs will run on different runners
-
read-write
# to avoid issues with common environment variables
-
shell-runner
rules
:
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PROJECT_NAMESPACE =~ /platform\/esd/ && $CI_PIPELINE_SOURCE != "schedule"
# Deploy in the lab-dev environment the version of the tools to be
# tested before released to production (push pipeline)
# deploy on the dev environment of the k8s dev cluster at CINECA
# runs on protected branches only as the token variable is protected
deploy-int-release-dev-cineca
:
extends
:
.deploy-build-environment
variables
:
OPENSHIFT_SERVER
:
$CINECA_K8S_DEV_SERVER
OPENSHIFT_TOKEN
:
$CINECA_K8S_DEV_TOKEN
OC_PROJECT
:
jupyterhub
LAB_KERNEL_ROOT
:
/srv/jupyterlab_kernels/int
INSTALLATION_ROOT
:
/srv/test-build-2402
SPACK_ENV
:
test
RELEASE_NAME
:
EBRAINS-test
resource_group
:
shared-NFS-mount-dev-cineca
rules
:
-
if
:
$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && $CI_PROJECT_NAMESPACE =~ /platform\/esd/ && $CI_PIPELINE_SOURCE != "schedule"
@@ -98,6 +119,28 @@ deploy-exp-release-dev-cscs:
SPACK_ENV
:
experimental
RELEASE_NAME
:
EBRAINS-experimental
resource_group
:
shared-NFS-mount-dev-cscs
tags
:
# this is just to ensure that the two jobs will run on different runners
-
read-write
# to avoid issues with common environment variables
-
shell-runner
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "schedule" && $DEPLOYMENT == "dev"
# Deploy the experimental release of tools (sheduled pipeline)
# once a week from latest working version of integration release
# (branch=experimental_release) to an experimental JupyterLab kernel
# deploy on the dev environment of the k8s dev cluster at CINECA
# runs on protected branches only as the token variable is protected
deploy-exp-release-dev-cineca
:
extends
:
.deploy-build-environment
variables
:
OPENSHIFT_SERVER
:
$CINECA_K8S_DEV_SERVER
OPENSHIFT_TOKEN
:
$CINECA_K8S_DEV_TOKEN
OC_PROJECT
:
jupyterhub
LAB_KERNEL_ROOT
:
/srv/jupyterlab_kernels/int
INSTALLATION_ROOT
:
/srv/test-build-2402
SPACK_ENV
:
experimental
RELEASE_NAME
:
EBRAINS-experimental
resource_group
:
shared-NFS-mount-dev-cineca
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "schedule" && $DEPLOYMENT == "dev"
@@ -118,9 +161,6 @@ deploy-exp-release-prod-cscs:
SPACK_ENV
:
experimental
RELEASE_NAME
:
EBRAINS-experimental
resource_group
:
shared-NFS-mount-prod-cscs
tags
:
# this is just to ensure that the two jobs will run on different runners
-
read-write
# to avoid issues with common environment variables
-
shell-runner
rules
:
-
if
:
$CI_PIPELINE_SOURCE == "schedule" && $DEPLOYMENT == "prod"