2019-03-14 18:22:04 +03:00
project_name: traefik
2024-12-06 18:56:06 +03:00
version: 2
2019-03-14 18:22:04 +03:00
2024-12-06 18:56:06 +03:00
[[if .GOARCH]]
dist: "./dist/[[ .GOOS ]]-[[ .GOARCH ]]"
[[else]]
2023-08-04 13:26:05 +03:00
dist: "./dist/[[ .GOOS ]]"
2024-12-06 18:56:06 +03:00
[[end]]
2019-03-14 18:22:04 +03:00
builds:
- binary: traefik
2020-07-15 22:58:16 +03:00
main: ./cmd/traefik/
2019-03-14 18:22:04 +03:00
env:
- CGO_ENABLED=0
ldflags:
2023-02-03 17:24:05 +03:00
- -s -w -X github.com/traefik/traefik/v3/pkg/version.Version={{.Version}} -X github.com/traefik/traefik/v3/pkg/version.Codename={{.Env.CODENAME}} -X github.com/traefik/traefik/v3/pkg/version.BuildDate={{.Date}}
2022-03-28 18:36:07 +03:00
flags:
- -trimpath
2019-03-14 18:22:04 +03:00
goos:
2023-08-04 13:26:05 +03:00
- "[[ .GOOS ]]"
2019-03-14 18:22:04 +03:00
goarch:
2024-12-06 18:56:06 +03:00
[[if .GOARCH]]
- "[[ .GOARCH ]]"
[[else]]
2019-03-14 18:22:04 +03:00
- amd64
2022-10-27 18:50:48 +03:00
- '386'
2019-03-14 18:22:04 +03:00
- arm
- arm64
- ppc64le
2022-02-15 12:08:08 +03:00
- s390x
2023-07-19 13:34:05 +03:00
- riscv64
2024-12-06 18:56:06 +03:00
[[end]]
2019-03-14 18:22:04 +03:00
goarm:
2022-10-27 18:50:48 +03:00
- '7'
- '6'
2019-03-14 18:22:04 +03:00
ignore:
- goos: darwin
2022-10-27 18:50:48 +03:00
goarch: '386'
2019-03-14 18:22:04 +03:00
- goos: openbsd
goarch: arm
2020-03-18 19:21:20 +03:00
- goos: openbsd
goarch: arm64
2022-10-27 18:50:48 +03:00
- goos: freebsd
goarch: arm
2019-03-14 18:22:04 +03:00
- goos: freebsd
2020-03-18 19:21:20 +03:00
goarch: arm64
2022-09-14 18:29:26 +03:00
- goos: windows
goarch: arm
2019-03-14 18:22:04 +03:00
changelog:
2024-02-16 12:08:04 +03:00
disable: true
2019-03-14 18:22:04 +03:00
2019-08-11 13:20:53 +03:00
archives:
- id: traefik
name_template: '{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE.md
- CHANGELOG.md
2019-03-14 18:22:04 +03:00
2019-04-16 15:50:05 +03:00
checksum:
name_template: "{{ .ProjectName }}_v{{ .Version }}_checksums.txt"
2019-03-14 18:22:04 +03:00
release:
disable: true