Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cdo
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
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
mpim-sw
cdo
Commits
7b4b740e
Commit
7b4b740e
authored
5 years ago
by
Ralf Mueller
Browse files
Options
Downloads
Patches
Plain Diff
add gitlab-ci
parent
0fa1df0d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#2447
failed
5 years ago
Stage: build
Stage: check
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+62
-0
62 additions, 0 deletions
.gitlab-ci.yml
with
62 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
62
−
0
View file @
7b4b740e
variables
:
GIT_SUBMODULE_STRATEGY
:
none
stages
:
-
build
-
check
build-gcc64
:
stage
:
build
before_script
:
-
. /sw/rhel6-x64/etc/profile.mistral && module list
-
module load libtool autoconf automake
-
module load gcc/6.4.0
# - git clone http://gitlab+deploy-token-2:Ei3CtzbsMN-v-S7LGkPZ@gitlab.dkrz.de/mpim-sw/libcdi.git && cd libcdi && git checkout develop
-
autoreconf -vfi && (cd libcdi && ./autogen.sh)
script
:
-
mkdir gcc64 && cd gcc64 && ../configure CC=/sw/rhel6-x64/gcc/gcc-6.4.0/bin/gcc CXX=/sw/rhel6-x64/gcc/gcc-6.4.0/bin/g++ FC=/sw/rhel6-x64/gcc/gcc-6.4.0/bin/gfortran && make -j
4
artifacts
:
paths
:
-
/builds/mpim-cw/cdo/gcc64
expire_in
:
5min
tags
:
-
xen, mistral
check-gcc64
:
stage
:
check
needs
:
[
"
build-gcc64"
]
before_script
:
-
. /sw/rhel6-x64/etc/profile.mistral && module list
script
:
-
module load gcc/6.4.0
-
cd gcc64 && make check
tags
:
-
xen, mistral
build-intel18
:
stage
:
build
before_script
:
-
. /sw/rhel6-x64/etc/profile.mistral && module list
-
module load libtool autoconf automake
# - git clone http://gitlab+deploy-token-2:Ei3CtzbsMN-v-S7LGkPZ@gitlab.dkrz.de/mpim-sw/libcdi.git && cd libcdi && git checkout develop
-
autoreconf -vfi && (cd libcdi && ./autogen.sh)
script
:
-
mkdir intel18 && cd intel18 && ../configure CC=/sw/rhel6-x64/intel/intel-18.0.4/bin/icc CXX=/sw/rhel6-x64/intel/intel-18.0.4/bin/icpc FC=/sw/rhel6-x64/intel/intel-18.0.4/bin/ifort && make -j
4
artifacts
:
paths
:
-
/builds/mpim-cw/cdo/intel18
expire_in
:
5min
tags
:
-
xen, mistral
check-intel18
:
stage
:
check
needs
:
[
"
build-intel18"
]
before_script
:
-
. /sw/rhel6-x64/etc/profile.mistral && module list
script
:
-
module load gcc/6.4.0 intel
-
cd intel18 && make check
tags
:
-
xen, mistral
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