Skip to content

Commit

Permalink
fix: sanity-check the docker image start
Browse files Browse the repository at this point in the history
To avoid basic runtime failures due to missing libraries:
```
 > docker run --rm statusteam/nim-waku:deploy-wakuv2-test --version
could not load: libpq.so(.5|)
```

Signed-off-by: Jakub Sokołowski <jakub@status.im>
  • Loading branch information
jakubgs committed Jun 27, 2023
1 parent 3906a93 commit ae05f0a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ci/Jenkinsfile.release
Expand Up @@ -67,6 +67,14 @@ pipeline {
} }
}

stage('Check') {
steps { script {
image.inside('--entrypoint=""') { c ->
sh '/usr/bin/wakunode --version'
}
} }
}

stage('Push') {
steps { script {
withDockerRegistry([credentialsId: "dockerhub-statusteam-auto", url: ""]) {
Expand Down

0 comments on commit ae05f0a

Please sign in to comment.