grim/convey

Clean up convey.yml a bit

2020-03-02, Gary Kramlich
029768cfe81d
Parents c4308135930b
Children a121658f181b
Clean up convey.yml a bit
  • +7 -6
    convey.yml
  • --- a/convey.yml Sun Oct 27 04:19:03 2019 -0500
    +++ b/convey.yml Mon Mar 02 16:35:09 2020 -0600
    @@ -2,14 +2,15 @@
    required-version: 0.14.0-dev
    environment:
    - CONVEY_VERSION=0.14.0-dev
    + - GO_IMAGE=golang:1.13-buster
    tasks:
    # tasks for the default plan
    import:
    - type: docker/import
    + type: convey/import
    files:
    - .:.
    export:
    - type: docker/export
    + type: convey/export
    files:
    - convey-${CONVEY_VERSION}-darwin-amd64
    - convey-${CONVEY_VERSION}-freebsd-amd64
    @@ -21,12 +22,12 @@
    - convey-*
    go-test:
    type: docker/run
    - image: golang:1.12-buster
    + image: ${GO_IMAGE}
    workdir: ${CONVEY_WORKSPACE}
    command: go test ./...
    build-linux:
    type: docker/run
    - image: golang:1.12-buster
    + image: ${GO_IMAGE}
    environment:
    - CGO_ENABLED=0
    - GOOS=linux
    @@ -43,7 +44,7 @@
    command: go build -o convey-${CONVEY_VERSION}-windows-amd64.exe
    build-darwin:
    type: docker/run
    - image: golang:1.12-buster
    + image: ${GO_IMAGE}
    environment:
    - GOOS=darwin
    - GOARCH=amd64
    @@ -51,7 +52,7 @@
    command: go build -o convey-${CONVEY_VERSION}-darwin-amd64
    build-freebsd:
    type: docker/run
    - image: golang:1.12-buster
    + image: ${GO_IMAGE}
    environment:
    - GOOS=freebsd
    - GOARCH=amd64