projects
/
platform
/
core
/
csapi
/
tizenfx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3a11a9e
)
Added Jenkinsfile
author
WonYoung Choi
<wy80.choi@samsung.com>
Mon, 9 Apr 2018 04:51:47 +0000
(13:51 +0900)
committer
WonYoung Choi
<wy80.choi@samsung.com>
Mon, 9 Apr 2018 04:51:47 +0000
(13:51 +0900)
Jenkinsfile
[new file with mode: 0644]
patch
|
blob
diff --git a/Jenkinsfile
b/Jenkinsfile
new file mode 100644
(file)
index 0000000..
17b557b
--- /dev/null
+++ b/
Jenkinsfile
@@ -0,0
+1,31
@@
+pipeline {
+ agent any
+ stages {
+ stage('Check Branch') {
+ steps {
+ sh '''#!/bin/sh
+
+env'''
+ }
+ }
+ stage('Hello A') {
+ parallel {
+ stage('Hello A') {
+ steps {
+ echo 'Hello A'
+ }
+ }
+ stage('Hello B') {
+ steps {
+ echo 'Hello B'
+ }
+ }
+ stage('Hello C') {
+ steps {
+ echo 'Hello C'
+ }
+ }
+ }
+ }
+ }
+}
\ No newline at end of file