Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
yaxt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
dkrz-sw
yaxt
Commits
82ed68df
Commit
82ed68df
authored
5 months ago
by
Thomas Jahns
Browse files
Options
Downloads
Patches
Plain Diff
gitlab-ci: Update configuration.
* Use runners on HPC instead of fake.
parent
d38bbd5e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+27
-14
27 additions, 14 deletions
.gitlab-ci.yml
tests/test_xmap_all2all_fail_run.in
+3
-1
3 additions, 1 deletion
tests/test_xmap_all2all_fail_run.in
with
30 additions
and
15 deletions
.gitlab-ci.yml
+
27
−
14
View file @
82ed68df
...
...
@@ -24,6 +24,10 @@ stages:
-
documentation
-
publish
include
:
-
project
:
'
anw_dienste/ci-templates'
file
:
'
.slurm-ci.yml'
.load_basic_modules
:
&load_basic_modules
-
. /sw/etc/profile.levante
-
export LANG=en_US.UTF-8
...
...
@@ -31,10 +35,21 @@ stages:
-
module load git python3
.init_build
:
extends
:
-
.default
variables
:
PARTITION
:
shared
TASK_COUNT
:
32
TIME_LIMIT
:
"
15:00"
ACCOUNT
:
k20200
SCHEDULER_PARAMETERS
:
>-
--account=$ACCOUNT
--partition=$PARTITION
--ntasks=$TASK_COUNT
--time=$TIME_LIMIT
MAKEFLAGS
:
--jobs=${TASK_COUNT}
before_script
:
-
*load_basic_modules
tags
:
-
levante-fake, hpc, dkrz
.init_build_gcc_11_2_0
:
extends
:
.init_build
...
...
@@ -59,7 +74,6 @@ stages:
before_script
:
-
*load_basic_modules
-
module load nag/7.1-gcc-11.2.0 openmpi/4.1.2-nag-7.1
-
export NAG_KUSARI_FILE="/etc/nag-license"
.install_gcovr
:
&install_gcovr
-
mkdir $CI_PROJECT_DIR/install_dir
...
...
@@ -95,7 +109,7 @@ gen_cov_data:
CFLAGS="-pipe -O0 -g -fprofile-arcs -ftest-coverage"
BUILD_CFLAGS='-Wall'
MPI_LAUNCH="`which mpirun` --oversubscribe"
-
make -j
8
check
-
make -j
4
check
artifacts
:
paths
:
-
./*.gcno
...
...
@@ -127,9 +141,9 @@ run_test_gcc_11_2_0:
|| { status=$? ; gzip config.log ; exit $status ; }
-
gzip config.log
# build yaxt and unit tests without running tests
-
make
-j8 check TESTS= XFAIL_TESTS=
2> >(tee make.err)
-
make 2> >(tee make.err)
# run tests
-
make check
-
make
-j4
check
# check git untracked files(any git untracked files would cause failure in ICON buildbot test)
-
mapfile -t untracked_files < <( $(git ls-files --other --exclude-standard --exclude=config.log.gz --exclude=make.err) )
-
|
...
...
@@ -164,9 +178,9 @@ run_test_intel_2021_5_0:
|| { status=$? ; gzip config.log ; exit $status ; }
-
gzip config.log
# build yaxt and unit tests without running tests
-
make
-j8 check TESTS= XFAIL_TESTS=
2> >(tee make.err)
-
make 2> >(tee make.err)
# run tests
-
make check
-
make
-j4
check
artifacts
:
paths
:
-
make.err
...
...
@@ -191,19 +205,18 @@ run_test_oneapi_2023_2_1:
LDFLAGS="-g -shared-intel"
--disable-silent-rules
--disable-static
MPI_LAUNCH=
/bin/true
MPI_LAUNCH=
"$(command -v mpirun)"
|| { status=$? ; gzip config.log ; exit $status ; }
-
gzip config.log
# build yaxt and unit tests without running tests
# - make -j8 check TESTS= XFAIL_TESTS= 2> >(tee make.err)
-
make -j8 2> >(tee make.err)
-
make 2> >(tee make.err)
# run tests
# TJ: deactivated checks because of problems in startup in the container
# - make check
-
make -j4 check
artifacts
:
paths
:
-
make.err
-
config.log.gz
-
tests/test-suite.log
when
:
always
expire_in
:
5min
...
...
@@ -225,7 +238,7 @@ run_test_nag_7_1:
|| { status=$? ; gzip config.log ; exit $status ; }
-
gzip config.log
# build yaxt and unit tests without running tests
-
make
-j8 check TESTS= XFAIL_TESTS=
2> >(tee make.err)
-
make 2> >(tee make.err)
# run tests
-
make check
artifacts
:
...
...
This diff is collapsed.
Click to expand it.
tests/test_xmap_all2all_fail_run.in
+
3
−
1
View file @
82ed68df
...
...
@@ -45,7 +45,9 @@
set -e
LIBC_FATAL_STDERR_=1
export LIBC_FATAL_STDERR_
[ x"@MPI_LAUNCH@" != xtrue ] || exit 77
if expr x"@MPI_LAUNCH@" : 'x.*/true$' >/dev/null ; then
exit 77
fi
ulimit -c 0
trap "rm -f '@abs_builddir@/test_xmap_all2all_fail.result.txt'" 0
for setup_size in small big; do
...
...
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