Skip to content
Open

Pull #294

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
pipeline{

agent any

stages{
stage("one"){
steps{
echo 'step 1'
sleep 3
}
}

stage("two"){
steps{
echo 'step 2'
sleep 9
}

}
stage("three"){
steps{
echo 'step 3'
sleep 5
}
}

}

post{
always{
echo 'This pipeline is completed'
}
}
}
4 changes: 4 additions & 0 deletions worker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
[![Build Status](http://35.197.102.152:8080/buildStatus/icon?job=job-01)](http://35.197.102.152:8080/job/job-01/)
[![Build Status](http://35.197.102.152:8080/buildStatus/icon?job=job-02&subject=UnitTest)](http://35.197.102.152:8080/job/job-02/)





3 changes: 3 additions & 0 deletions worker/pom.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Expand Down Expand Up @@ -102,3 +103,5 @@
</plugins>
</build>
</project>