mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
* feat(zeus): add zeus package * feat(signoz): add DI for zeus * feat(zeus): integrate with the codebase * ci(make): change makefile * ci: change workflows to point to the new zeus url * Update ee/query-service/usage/manager.go Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * Update ee/query-service/license/manager.go Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * fix: fix nil retriable * fix: fix zeus DI * fix: fix path of ldflag * feat(zeus): added zeus integration tests * feat(zeus): added zeus integration tests * feat(zeus): format the pytest --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: vikrantgupta25 <vikrant.thomso@gmail.com> Co-authored-by: Vikrant Gupta <vikrant@signoz.io>
69 lines
1.7 KiB
YAML
69 lines
1.7 KiB
YAML
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json
|
|
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
|
|
version: 2
|
|
|
|
project_name: signoz
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
builds:
|
|
- id: signoz
|
|
binary: bin/signoz
|
|
main: ee/query-service/main.go
|
|
env:
|
|
- CGO_ENABLED=1
|
|
- >-
|
|
{{- if eq .Os "linux" }}
|
|
{{- if eq .Arch "arm64" }}CC=aarch64-linux-gnu-gcc{{- end }}
|
|
{{- end }}
|
|
goos:
|
|
- linux
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
goamd64:
|
|
- v1
|
|
goarm64:
|
|
- v8.0
|
|
ldflags:
|
|
- -s -w
|
|
- -X github.com/SigNoz/signoz/pkg/version.version=v{{ .Version }}
|
|
- -X github.com/SigNoz/signoz/pkg/version.variant=enterprise
|
|
- -X github.com/SigNoz/signoz/pkg/version.hash={{ .ShortCommit }}
|
|
- -X github.com/SigNoz/signoz/pkg/version.time={{ .CommitTimestamp }}
|
|
- -X github.com/SigNoz/signoz/pkg/version.branch={{ .Branch }}
|
|
- -X github.com/SigNoz/signoz/ee/zeus.url=https://api.signoz.cloud
|
|
- -X github.com/SigNoz/signoz/ee/zeus.deprecatedURL=https://license.signoz.io
|
|
- >-
|
|
{{- if eq .Os "linux" }}-linkmode external -extldflags '-static'{{- end }}
|
|
mod_timestamp: "{{ .CommitTimestamp }}"
|
|
tags:
|
|
- timetzdata
|
|
|
|
archives:
|
|
- formats:
|
|
- tar.gz
|
|
name_template: >-
|
|
{{ .ProjectName }}_{{- .Os }}_{{- .Arch }}
|
|
wrap_in_directory: true
|
|
strip_binary_directory: false
|
|
files:
|
|
- src: README.md
|
|
dst: README.md
|
|
- src: LICENSE
|
|
dst: LICENSE
|
|
- src: frontend/build
|
|
dst: web
|
|
- src: conf
|
|
dst: conf
|
|
- src: templates
|
|
dst: templates
|
|
|
|
release:
|
|
name_template: "v{{ .Version }}"
|
|
draft: false
|
|
prerelease: auto
|