Skip to content

Commit

Permalink
Merge pull request #1 from EndPointCorp/jenkins
Browse files Browse the repository at this point in the history
Jenkins
  • Loading branch information
kiselev-dv authored Jul 31, 2020
2 parents 93846d8 + 3ac22f3 commit a37747f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node() {
stage('Checkout') {
checkoutInfo = checkout scm
}
stage('Run build script') {
sh "./scripts/fake_build.sh"
}
stage('Commit/Push') {
sh "echo foo"
}
}
3 changes: 3 additions & 0 deletions scripts/fake_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

echo "run or execute in this step the script that updates the repo here"

0 comments on commit a37747f

Please sign in to comment.