diff --git a/Jenkinsfile b/Jenkinsfile index 31c12c3..c6e9f3d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,13 +30,17 @@ pipeline { } stage("build"){ - sh ''' - cd build ninja - ''' + steps{ + sh ''' + cd build ninja + ''' + } } stage("test"){ - echo "test" + steps{ + echo "test" + } } } }