OAuth::Keyのテストを書いた(#58)

This commit is contained in:
keita
2021-02-27 19:27:09 +09:00
parent cf77f7d611
commit 605b991d60
5 changed files with 106 additions and 48 deletions
Vendored
+50 -47
View File
@@ -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
}
}
}
}
}