Skip to content

Commit

Permalink
add doc builds stage to Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebachmeier committed Dec 13, 2024
1 parent ad59f93 commit 3ae64e8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ pipeline {
}
}

stage("Test") {
stage("Test and Build Docs") {
parallel {
stage("Run End-to-End Tests") {
steps {
Expand Down Expand Up @@ -194,6 +194,12 @@ pipeline {
])
}
}

stage("Build Docs") {
steps {
sh "${ACTIVATE} && make build-doc"
}
}
}
}
}
Expand Down

0 comments on commit 3ae64e8

Please sign in to comment.