-
Notifications
You must be signed in to change notification settings - Fork 263
/
.goreleaser.yml
104 lines (95 loc) · 3.7 KB
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# Copyright 2020 Nokia
# Licensed under the BSD 3-Clause License.
# SPDX-License-Identifier: BSD-3-Clause
version: 2
project_name: containerlab
builds:
- id: clab-bin
env:
- CGO_ENABLED=0
flags:
- -trimpath
- -tags=podman exclude_graphdriver_btrfs btrfs_noversion exclude_graphdriver_devicemapper exclude_graphdriver_overlay containers_image_openpgp
ldflags:
- -s -w -X github.com/srl-labs/containerlab/cmd.version={{.Version}} -X github.com/srl-labs/containerlab/cmd.commit={{.ShortCommit}} -X github.com/srl-labs/containerlab/cmd.date={{.Date}}
goos:
- linux
goarch:
- amd64
- arm64
# removing upx compression due to https://github.com/srl-labs/containerlab/issues/1264
# hooks:
# post:
# - upx "{{ .Path }}"
dockers:
- goos: linux
goarch: amd64
image_templates:
# if version contains 0.0.0 this is a beta build, for which we don't apply the `latest` tag and apply `beta` tag instead
- &amd_latest_image '{{- if contains .Version "0.0.0"}}ghcr.io/srl-labs/clab:beta-amd64{{- else}}{{- if not .IsSnapshot}}ghcr.io/srl-labs/clab:latest-amd64{{- end}}{{- end }}'
- &amd_versioned_image 'ghcr.io/srl-labs/clab:{{ replace .Version "v" "" }}-amd64'
build_flag_templates:
- "--platform=linux/amd64"
use: buildx
dockerfile: goreleaser.dockerfile
- goos: linux
goarch: arm64
image_templates:
# if version contains 0.0.0 this is a beta build, for which we don't apply the `latest` tag and apply `beta` tag instead
- &arm_latest_image '{{- if contains .Version "0.0.0"}}ghcr.io/srl-labs/clab:beta-arm64{{- else}}{{- if not .IsSnapshot}}ghcr.io/srl-labs/clab:latest-arm64{{- end}}{{- end }}'
- &arm_versioned_image 'ghcr.io/srl-labs/clab:{{ replace .Version "v" ""}}-arm64'
build_flag_templates:
- "--platform=linux/arm64"
dockerfile: goreleaser.dockerfile
use: buildx
docker_manifests:
- name_template: 'ghcr.io/srl-labs/clab:{{ replace .Version "v" "" }}'
image_templates:
- *amd_versioned_image
- *arm_versioned_image
# this manifest creates a `latest` or `beta` tag based on the version of the release
- name_template: '{{- if contains .Version "0.0.0"}}ghcr.io/srl-labs/clab:beta{{- else}}{{- if not .IsSnapshot}}ghcr.io/srl-labs/clab:latest{{- end}}{{- end }}'
image_templates:
- *amd_latest_image
- *arm_latest_image
archives:
- name_template: '{{ .ProjectName }}_{{ replace .Version "v" "" }}_{{ .Os }}_{{ .Arch }}'
files:
- lab-examples/**/*
checksum:
name_template: checksums.txt
snapshot:
name_template: "{{ .Tag }}-next"
publishers:
- name: fury.io deb/rpm packages
ids:
- containerlab-nfpms # this id belongs to nfpm section and is used to only upload artifacts from nfpm
dir: "{{ dir .ArtifactPath }}"
cmd: curl -F package=@{{ .ArtifactName }} https://{{ .Env.FURY_TOKEN }}@push.fury.io/netdevops/
release:
prerelease: auto
changelog:
use: github-native
nfpms:
- id: containerlab-nfpms
file_name_template: '{{ .ProjectName }}_{{ replace .Version "v" "" }}_{{ .Os }}_{{ .Arch }}'
package_name: containerlab
maintainer: Roman Dodin <[email protected]>, Markus Vahlenkamp <[email protected]>, Karim Radhouani <[email protected]>
homepage: https://containerlab.dev
description: |
containerlab deploys containerized networking topologies
vendor: Nokia
license: GNU GPLv3
formats:
- rpm
- deb
- apk
scripts:
postinstall: ./utils/postinstall.sh
bindir: /usr/bin
contents:
- src: ./lab-examples
dst: /etc/containerlab/lab-examples
- src: /usr/bin/containerlab
dst: /usr/bin/clab
type: symlink