update Jenkins

This commit is contained in:
Jan Przybylski 2020-11-24 00:33:09 +01:00
parent 6fef5cb367
commit 8400dfb33b
3 changed files with 4 additions and 0 deletions

2
Jenkinsfile vendored
View File

@ -5,11 +5,13 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building..' echo 'Building..'
sh 'make'
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing..' echo 'Testing..'
sh 'make check || true'
} }
} }
stage('Deploy') { stage('Deploy') {

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
app.pdf: app.R
R CMD BATCH app.R

0
app.R Normal file
View File