manage Jenkinsfile(#57)

This commit is contained in:
keita
2021-02-25 17:55:05 +09:00
parent 24dc22097f
commit bd4c22a592
Vendored
+8 -4
View File
@@ -30,13 +30,17 @@ pipeline {
} }
stage("build"){ stage("build"){
sh ''' steps{
cd build ninja sh '''
''' cd build ninja
'''
}
} }
stage("test"){ stage("test"){
echo "test" steps{
echo "test"
}
} }
} }
} }