Skip to content

Commit

Permalink
ci: Verify container env
Browse files Browse the repository at this point in the history
Signed-off-by: Colin Walters <walters@verbum.org>
  • Loading branch information
cgwalters committed May 2, 2024
1 parent 525b260 commit f8d42a2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .cci.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ stage("Build") {
def n = 5
buildPod(memory: "2Gi", cpu: "${n}") {
checkout scm
stage("Verify container env1") {
shwrap("env")
shwrap("""if test -z "\${container:-}"; then echo missing container env; sleep 15m; exit 1; fi""")
}
stage("Static analysis") {
shwrap("./ci/codestyle.sh")
}
Expand Down

0 comments on commit f8d42a2

Please sign in to comment.