OAuth::Keyのテストを書いた(#58)
This commit is contained in:
Vendored
+50
-47
@@ -3,56 +3,59 @@ pipeline {
|
||||
dockerfile true
|
||||
}
|
||||
|
||||
stages{
|
||||
stage("parallel execution"){
|
||||
parallel{
|
||||
stage("doxygen"){
|
||||
steps{
|
||||
sh 'doxygen'
|
||||
}
|
||||
}
|
||||
stages{
|
||||
stage("parallel execution"){
|
||||
parallel{
|
||||
stage("doxygen"){
|
||||
steps{
|
||||
sh 'doxygen'
|
||||
}
|
||||
}
|
||||
|
||||
stage("validation"){
|
||||
steps{
|
||||
sh 'tools/validate/includeGuard.sh'
|
||||
}
|
||||
}
|
||||
stage("build and test"){
|
||||
stages{
|
||||
stage("prepare"){
|
||||
steps{
|
||||
sh '''
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake .. -G Ninja
|
||||
'''
|
||||
}
|
||||
}
|
||||
stage("validation"){
|
||||
steps{
|
||||
sh 'tools/validate/includeGuard.sh'
|
||||
}
|
||||
}
|
||||
stage("build and test"){
|
||||
stages{
|
||||
stage("prepare"){
|
||||
steps{
|
||||
sh '''
|
||||
mkdir -p build
|
||||
cd build
|
||||
cmake .. -G Ninja
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
||||
stage("build"){
|
||||
steps{
|
||||
sh '''
|
||||
cd build
|
||||
ninja
|
||||
'''
|
||||
}
|
||||
}
|
||||
stage("build"){
|
||||
steps{
|
||||
sh '''
|
||||
cd build
|
||||
ninja
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
||||
stage("test"){
|
||||
steps{
|
||||
echo "test"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage("test"){
|
||||
steps{
|
||||
sh '''
|
||||
cd build
|
||||
ctest --output_on_failure
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage("upload artifact"){
|
||||
steps{
|
||||
archiveArtifacts allowEmptyArchive: true, artifacts: 'help/**/*.*', onlyIfSuccessful: true
|
||||
}
|
||||
}
|
||||
stage("upload artifact"){
|
||||
steps{
|
||||
archiveArtifacts allowEmptyArchive: true, artifacts: 'help/**/*.*', onlyIfSuccessful: true
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user