Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
mpim-sw
libcdi
Commits
63ef5828
Commit
63ef5828
authored
2 years ago
by
Sergey Kosukhin
Browse files
Options
Downloads
Patches
Plain Diff
Add a scipt that run all CI tests for the current test environment.
parent
4e4f255d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#20184
failed
3 weeks ago
Stage: external
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.ci/bb/run_all.sh
+60
-0
60 additions, 0 deletions
.ci/bb/run_all.sh
with
60 additions
and
0 deletions
.ci/bb/run_all.sh
0 → 100755
+
60
−
0
View file @
63ef5828
#!/bin/bash
set
-eu
set
-o
pipefail
script_dir
=
$(
cd
"
$(
dirname
"
$0
"
)
"
;
pwd
)
top_srcdir
=
$(
cd
"
${
script_dir
}
/../.."
;
pwd
)
test_environment
=
'unknown'
case
$(
uname
-s
)
in
Linux
)
node_name
=
$(
uname
-n
)
case
$(
host
"
${
node_name
}
"
)
in
mpipc
*
.mpimet.mpg.de
\
*
|
\
breeze
*
.mpimet.mpg.de
\
*
)
test_environment
=
'breeze-mpim'
;;
levante
*
.atos.local
\
*
)
test_environment
=
'levante-dkrz'
;;
daint
*
.login.cscs.ch
\
*
)
test_environment
=
'daint-cscs'
;;
esac
esac
test
"x
${
test_environment
}
"
!=
'xunknown'
||
{
echo
'ERROR: unknown test environment'
>
&2
exit
1
}
cd
"
${
top_srcdir
}
"
git update-index
-q
--refresh
||
{
echo
"ERROR: failed to update git index in '
${
top_srcdir
}
'"
>
&2
exit
1
}
git diff-files
--quiet
||
{
echo
"ERROR: '
${
top_srcdir
}
' has unstaged changes"
>
&2
exit
1
}
untracked_files
=
`
git ls-files
--others
`
||
{
echo
"ERROR: failed to get list of untracked files in '
${
top_srcdir
}
'"
>
&2
exit
1
}
if
test
-n
"
${
untracked_files
}
"
;
then
{
echo
"ERROR: '
${
top_srcdir
}
' has untracked files:"
>
&2
echo
"
${
untracked_files
}
"
>
&2
}
>
&2
exit
1
fi
echo
"Running tests for '
${
test_environment
}
'"
for
script
in
$(
find
"
${
script_dir
}
/
${
test_environment
}
"
-type
f
-name
'test.*'
-executable
)
;
do
echo
"Running '
${
script
}
'"
"
${
script
}
"
git clean
-fdx
git checkout
.
done
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