Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
elpa
elpa
Commits
e5f154c3
Commit
e5f154c3
authored
Jul 14, 2017
by
Andreas Marek
Browse files
Merge branch 'loh/scripts'
parents
66129c43
9ccbfa22
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
ci_coverage_collect
View file @
e5f154c3
...
...
@@ -2,6 +2,9 @@
PATH
=
${
HOME
}
/bin:
${
PATH
}
set
-e
set
pipefail
cov_dir
=
coverage_data
prefix
=
$cov_dir
/coverage_
${
CI_BUILD_REF
}
_
${
CI_BUILD_NAME
}
mkdir
-p
$cov_dir
/
...
...
manual_cpp
View file @
e5f154c3
...
...
@@ -34,7 +34,11 @@ if len(files) > 1:
raise
Exception
(
"Specify exactly one .F90 file"
)
elif
len
(
files
)
==
0
:
# No .F90 file specified, execute program as-is
os
.
execvp
(
args
[
0
],
args
[
0
:])
try
:
os
.
execvp
(
args
[
0
],
args
[
0
:])
except
OSError
as
e
:
print
(
"Error executing '{0}': {1}"
.
format
(
args
[
0
],
e
.
args
[
1
]))
raise
SystemExit
(
1
)
elif
len
(
files
)
==
1
:
file
,
=
files
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment