Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
NFV - Network Functions Virtualisation
api-tests
Commits
94adb87e
Commit
94adb87e
authored
Sep 22, 2021
by
Elian Kraja
Committed by
Giacomo Bernini
Oct 05, 2021
Browse files
CI/CD enhancements
parent
547c77e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
.jenkins.sh
.jenkins.sh
+13
-1
scripts/docker/Dockerfile
scripts/docker/Dockerfile
+1
-1
No files found.
.jenkins.sh
View file @
94adb87e
...
...
@@ -12,7 +12,18 @@ run_dir="$(pwd)"
echo
"Using git branch
$GIT_BRANCH
"
bash ./scripts/build-container.sh
bash ./scripts/run-container.sh
"
${
run_dir
}
"
"
$GIT_BRANCH
"
ret
=
$?
if
[
"
$ret
"
!=
"0"
]
;
then
echo
"build-container.sh failed"
exit
-1
fi
bash ./scripts/run-container.sh
"
${
run_dir
}
"
ret
=
$?
if
[
"
$ret
"
!=
"0"
]
;
then
echo
"run-container.sh failed"
exit
-1
fi
if
[[
"
$GIT_BRANCH
"
=
~ .
*
fix-plu
$
]]
;
then
...
...
@@ -30,3 +41,4 @@ fi
ret
=
$?
echo
"Final validation result:
$ret
"
exit
$ret
scripts/docker/Dockerfile
View file @
94adb87e
FROM
ubuntu:1
6
.04
FROM
ubuntu:1
8
.04
MAINTAINER
ETSI STF 583
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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