Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-smf-gateway
Commits
bd980e8f
Commit
bd980e8f
authored
3 years ago
by
NetOps
Browse files
Options
Download
Patches
Plain Diff
Add new file
parent
5602c433
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Jenkinsfile
+50
-0
Jenkinsfile
with
50 additions
and
0 deletions
+50
-0
Jenkinsfile
0 → 100644
+
50
−
0
View file @
bd980e8f
node
()
{
try
{
String
ANSI_GREEN
=
"\u001B[32m"
String
ANSI_NORMAL
=
"\u001B[0m"
String
ANSI_BOLD
=
"\u001B[1m"
String
ANSI_RED
=
"\u001B[31m"
String
ANSI_YELLOW
=
"\u001B[33m"
ansiColor
(
'xterm'
)
{
stage
(
'Checkout'
)
{
cleanWs
()
checkout
scm
}
}
stage
(
'docker-pre-build'
)
{
sh
'''
docker build --no-cache -f ./Dockerfile.build -t $docker_pre_build .
docker run --name $docker_pre_build $docker_pre_build:latest && docker cp $docker_pre_build:/opt/target/zuul-0.0.1-SNAPSHOT.jar .
docker rm -f $docker_pre_build
docker rmi -f $docker_pre_build
'''
}
stage
(
'docker-build'
)
{
sh
'''
commit_id=$(git rev-parse --short HEAD)
echo $commit_id> commit_id.txt
docker build --no-cache -f Dockerfile -t $docker_server/$docker_repo:$commit_id .
docker tag $docker_server/$docker_repo:$commit_id $docker_server/$docker_repo:$image_tag
'''
}
stage
(
'docker-push'
)
{
sh
'''
pwd
commit_id=$(git rev-parse --short HEAD)
docker push $docker_server/$docker_repo:$commit_id
docker push $docker_server/$docker_repo:$image_tag
docker rmi -f $docker_server/$docker_repo:$commit_id
docker rmi -f $docker_server/$docker_repo:$image_tag
'''
}
}
catch
(
err
)
{
currentBuild
.
result
=
"FAILURE"
throw
err
}
}
This diff is collapsed.
Click to expand it.
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!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets