Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plumed AlphaFold
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Martin Kurečka
Plumed AlphaFold
Commits
a355c246
There was an error fetching the commit references. Please try again later.
Commit
a355c246
authored
4 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Patches
Plain Diff
Use PLUMED_ALLOW_SKIP_ON_TRAVIS on GH actions
parent
3fd4db50
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
regtest/scripts/run
+5
-5
5 additions, 5 deletions
regtest/scripts/run
with
5 additions
and
5 deletions
regtest/scripts/run
+
5
−
5
View file @
a355c246
...
...
@@ -79,7 +79,7 @@ mpi="$mpi -np $mpiprocs"
if
!
$plumed
config
-q
has mpi
then
if
[
"
$TRAVIS
"
=
true
]
;
then
if
[
"
$TRAVIS
"
=
true
]
||
[
"
$GITHUB_ACTIONS
"
=
true
]
;
then
if
[
-z
"
$PLUMED_ALLOW_SKIP_ON_TRAVIS
"
]
;
then
echo
"NOT_APPLICABLE (MPI NOT INSTALLED)"
else
...
...
@@ -99,7 +99,7 @@ fi
if
((
mpiprocs>0
))
&&
[[
"
$valgrind
"
!=
"env"
]]
then
if
[
"
$TRAVIS
"
=
true
]
;
then
if
[
"
$TRAVIS
"
=
true
]
||
[
"
$GITHUB_ACTIONS
"
=
true
]
;
then
if
[
-z
"
$PLUMED_ALLOW_SKIP_ON_TRAVIS
"
]
;
then
echo
"NOT_APPLICABLE (MPI cannot be used with valgrind)"
else
...
...
@@ -116,7 +116,7 @@ do
echo
"Checking for
$need
"
if
!
$plumed
config
-q
has
$need
then
if
[
"
$TRAVIS
"
=
true
]
;
then
if
[
"
$TRAVIS
"
=
true
]
||
[
"
$GITHUB_ACTIONS
"
=
true
]
;
then
if
[
-z
"
$PLUMED_ALLOW_SKIP_ON_TRAVIS
"
]
;
then
echo
"NOT_APPLICABLE (
$need
NOT ENABLED)"
else
...
...
@@ -135,7 +135,7 @@ do
if
!
$plumed
config
-q
module
$module
then
if
[
"
$TRAVIS
"
=
true
]
;
then
if
[
-z
"
$PLUMED_ALLOW_SKIP_ON_TRAVIS
"
]
;
then
if
[
-z
"
$PLUMED_ALLOW_SKIP_ON_TRAVIS
"
]
||
[
"
$GITHUB_ACTIONS
"
=
true
]
;
then
echo
"NOT_APPLICABLE (
$module
MODULE NOT INSTALLED)"
else
echo
"SKIP_ON_TRAVIS found!"
...
...
@@ -149,7 +149,7 @@ done
if
type
-t
plumed_custom_skip 1>/dev/null
;
then
if
plumed_custom_skip
;
then
if
[
"
$TRAVIS
"
=
true
]
;
then
if
[
"
$TRAVIS
"
=
true
]
||
[
"
$GITHUB_ACTIONS
"
=
true
]
;
then
if
[
-z
"
$PLUMED_ALLOW_SKIP_ON_TRAVIS
"
]
;
then
echo
"NOT_APPLIABLE (plumed_custom_skip)"
else
...
...
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