Ostatnio dzialajacy Jenkins

This commit is contained in:
Jan Przybylski 2020-11-25 00:22:28 +01:00
parent ac504288bc
commit 8b798143c1
3 changed files with 21 additions and 8 deletions

21
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,21 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}

0
app.R Normal file
View File

View File

@ -1,8 +0,0 @@
use_jenkins <- function() {
use_make()
use_template(
"Jenkinsfile",
data = list(name = project_name())
)
use_build_ignore("Jenkinsfile")
}