Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
calypso
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
faser
calypso
Commits
32770dea
Commit
32770dea
authored
1 month ago
by
FASER Reco
Browse files
Options
Downloads
Patches
Plain Diff
Patch up CI
parent
1ab79c99
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!418
alma9-dev merge
Pipeline
#10001770
failed
1 month ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-2
2 additions, 2 deletions
.gitlab-ci.yml
.gitlab-ci.yml.fixme
+0
-54
0 additions, 54 deletions
.gitlab-ci.yml.fixme
with
2 additions
and
56 deletions
.gitlab-ci.yml
+
2
−
2
View file @
32770dea
...
@@ -26,7 +26,7 @@ build_image:
...
@@ -26,7 +26,7 @@ build_image:
-
mkdir build
-
mkdir build
-
cd build
-
cd build
-
set +e && source ${ATLAS_LOCAL_ROOT_BASE}/user/atlasLocalSetup.sh; set -e
-
set +e && source ${ATLAS_LOCAL_ROOT_BASE}/user/atlasLocalSetup.sh; set -e
-
set +e && asetup --input=../../calypso/asetup.faser Athena,2
2
.0.4
9
; set -e
-
set +e && asetup --input=../../calypso/asetup.faser Athena,2
4
.0.4
1
; set -e
-
cmake ../../calypso
-
cmake ../../calypso
-
make -j
3
-
make -j
3
artifacts
:
artifacts
:
...
@@ -43,7 +43,7 @@ test_unittest:
...
@@ -43,7 +43,7 @@ test_unittest:
-
yum -y --disablerepo=epel install man which git make cmake3 gcc-c++ gcc binutils libX11-devel libXpm-devel libXft-devel libXext-devel python openssl-devel
-
yum -y --disablerepo=epel install man which git make cmake3 gcc-c++ gcc binutils libX11-devel libXpm-devel libXft-devel libXext-devel python openssl-devel
-
cd build
-
cd build
-
set +e && source ${ATLAS_LOCAL_ROOT_BASE}/user/atlasLocalSetup.sh; set -e
-
set +e && source ${ATLAS_LOCAL_ROOT_BASE}/user/atlasLocalSetup.sh; set -e
-
set +e && asetup --input=../../calypso/asetup.faser Athena,2
2
.0.4
9
; set -e
-
set +e && asetup --input=../../calypso/asetup.faser Athena,2
4
.0.4
1
; set -e
-
set +e && source `find . -name 'setup.sh'`; set -e
-
set +e && source `find . -name 'setup.sh'`; set -e
-
ctest -j3
-
ctest -j3
dependencies
:
dependencies
:
...
...
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml.fixme
deleted
100644 → 0
+
0
−
54
View file @
1ab79c99
variables:
# all submodules will be cloned recursively upon start of CI job
GIT_SUBMODULE_STRATEGY: recursive
GIT_SSL_NO_VERIFY: "true"
ATLAS_LOCAL_ROOT_BASE: /cvmfs/atlas.cern.ch/repo/ATLASLocalRootBase
stages:
- build
- test
##########################
# BUILD stage #
##########################
build_image:
# description: triggers a build of the project as a Docker image,
# each branch will have an individual Docker image that will be used
# in the following stages of the pipeline for testing the code
image:
name: gitlab-registry.cern.ch/linuxsupport/cc7-base:latest
stage: build
tags:
- k8s-cvmfs
script:
- yum -y --disablerepo=epel install redhat-lsb redhat-lsb-core man uuid-devel libuuid libuuid-devel mesa-libGL-devel libXpm-devel
- mkdir build
- cd build
- set +e && source ${ATLAS_LOCAL_ROOT_BASE}/user/atlasLocalSetup.sh; set -e
- set +e && asetup --input=../../calypso/asetup.faser Athena,24.0.41; set -e
- cmake ../../calypso
- make -j 3
artifacts:
paths:
- build/
test_unittest:
image:
name: gitlab-registry.cern.ch/linuxsupport/cc7-base:latest
stage: test
tags:
- k8s-cvmfs
script:
- yum -y --disablerepo=epel install man which git make cmake3 gcc-c++ gcc binutils libX11-devel libXpm-devel libXft-devel libXext-devel python openssl-devel
- cd build
- set +e && source ${ATLAS_LOCAL_ROOT_BASE}/user/atlasLocalSetup.sh; set -e
- set +e && asetup --input=../../calypso/asetup.faser Athena,24.0.41; set -e
- set +e && source `find . -name 'setup.sh'`; set -e
- ctest -j3
dependencies:
- build_image
artifacts:
paths:
- LastTest.log
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