mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
4171f6d6c1
closes #3848
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
distributable:
|
|
url: https://github.com/docker/cli/archive/v{{version}}.tar.gz
|
|
strip-components: 1
|
|
versions:
|
|
github: docker/cli/tags
|
|
build:
|
|
dependencies:
|
|
go.dev: '*'
|
|
github.com/cpuguy83/go-md2man: '*'
|
|
script:
|
|
- mkdir -p ./src/github.com/docker
|
|
- ln -sf $GOPATH $GOPATH/src/github.com/docker/cli
|
|
- run: |
|
|
go build $ARGS -ldflags="$LD_FLAGS -X \"github.com/docker/cli/cli/version.PlatformName=Docker Engine - Community\"" github.com/docker/cli/cmd/docker
|
|
- run: |
|
|
for md in man/*.[1-8].md; do
|
|
section=$(basename "$md" | sed 's/.*\.\([1-8]\)\.md/\1/')
|
|
mkdir -p "{{prefix}}/man/man${section}"
|
|
go-md2man -in="$md" -out="{{prefix}}/man/man${section}/$(basename "$md" .md)"
|
|
done
|
|
env:
|
|
GOPATH: $PWD
|
|
GO111MODULE: auto
|
|
ARGS:
|
|
- -trimpath
|
|
- -o={{prefix}}/bin/docker
|
|
LD_FLAGS:
|
|
- -X github.com/docker/cli/cli/version.BuildTime=$(date "+%Y-%m-%dT%H:%M:%S%z")
|
|
- -X github.com/docker/cli/cli/version.Version={{version}}
|
|
linux:
|
|
LD_FLAGS:
|
|
- -buildmode=pie
|
|
provides:
|
|
- bin/docker
|
|
test:
|
|
script:
|
|
- docker --version | grep {{version}}
|
|
display-name: docker/cli
|