Execute built binary as simple test

This commit is contained in:
Thomas Boerger 2019-01-22 23:11:11 +01:00
parent 942d158c0e
commit 502e6ceee0
No known key found for this signature in database
GPG Key ID: 09745AFF9D63C79B
3 changed files with 34 additions and 2 deletions

View File

@ -72,6 +72,14 @@ local PipelineBuild(os="linux", arch="amd64") = {
event: [ "tag" ],
},
},
{
name: "executable",
image: "golang:1.11",
pull: "always",
commands: [
"./release/" + os + "/" + arch + "/drone-s3-sync --help",
],
},
{
name: "dryrun",
image: "plugins/docker:" + os + "-" + arch,

View File

@ -7,7 +7,7 @@ platform:
arch: amd64
steps:
- name: build
- name: build-push
pull: always
image: golang:1.11
commands:
@ -20,7 +20,7 @@ steps:
- push
- pull_request
- name: build
- name: build-tag
pull: always
image: golang:1.11
commands:
@ -32,6 +32,12 @@ steps:
event:
- tag
- name: executable
pull: always
image: golang:1.11
commands:
- ./release/windows/amd64/drone-s3-sync --help
- name: dryrun
pull: always
image: plugins/docker:windows-amd64

View File

@ -61,6 +61,12 @@ steps:
event:
- tag
- name: executable
pull: always
image: golang:1.11
commands:
- ./release/linux/amd64/drone-s3-sync --help
- name: dryrun
pull: always
image: plugins/docker:linux-amd64
@ -135,6 +141,12 @@ steps:
event:
- tag
- name: executable
pull: always
image: golang:1.11
commands:
- ./release/linux/arm64/drone-s3-sync --help
- name: dryrun
pull: always
image: plugins/docker:linux-arm64
@ -209,6 +221,12 @@ steps:
event:
- tag
- name: executable
pull: always
image: golang:1.11
commands:
- ./release/linux/arm/drone-s3-sync --help
- name: dryrun
pull: always
image: plugins/docker:linux-arm