add ci step to test binary
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Robert Kaussow 2020-03-22 15:06:37 +01:00
parent 4533ff3c53
commit 1d42a6b3fa
3 changed files with 13 additions and 2 deletions

View File

@ -17,6 +17,14 @@ local PipelineBuild(arch='amd64') = {
'make build', 'make build',
], ],
}, },
{
name: 'verify',
image: 'alpine',
commands: [
'src/target/x86_64-unknown-linux-musl/release/bitwarden_rs --help',
'src/target/x86_64-unknown-linux-musl/release/bitwarden_rs --version',
],
}
{ {
name: 'dryrun', name: 'dryrun',
image: 'plugins/docker', image: 'plugins/docker',

View File

@ -17,6 +17,9 @@ steps:
- name: dryrun - name: dryrun
image: plugins/docker image: plugins/docker
commands:
- src/target/x86_64-unknown-linux-musl/release/bitwarden_rs --help
- src/target/x86_64-unknown-linux-musl/release/bitwarden_rs --version
settings: settings:
dockerfile: Dockerfile dockerfile: Dockerfile
dry_run: true dry_run: true
@ -130,6 +133,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: 63ee112a80ffc68684a7cd7e74e73be16247c904f1131b509fe852319e058b15 hmac: 4af2158918aa22df9a9e577f8c12be2c67670e040a7b0b3f0cc8389618355149
... ...

View File

@ -1,5 +1,5 @@
* FEATURE * FEATURE
* update server to v1.14 * update server to v1.14.1
* update web-vault to v2.13.1 * update web-vault to v2.13.1
* add new env variable `USER_ATTACHMENT_LIMIT` * add new env variable `USER_ATTACHMENT_LIMIT`
* add new env variable `ORG_ATTACHMENT_LIMIT` * add new env variable `ORG_ATTACHMENT_LIMIT`