-
-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1568 from prometheus-community/superq/prom_community
Update for Prometheus Community
- Loading branch information
Showing
100 changed files
with
1,620 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
go: | ||
# This must match .circle/config.yml. | ||
version: 1.23 | ||
repository: | ||
path: github.com/prometheus-community/yet-another-cloudwatch-exporter | ||
build: | ||
binaries: | ||
- name: yace | ||
path: ./cmd/yace | ||
ldflags: | | ||
-X github.com/prometheus/common/version.Version={{.Version}} | ||
-X github.com/prometheus/common/version.Revision={{.Revision}} | ||
-X github.com/prometheus/common/version.Branch={{.Branch}} | ||
-X github.com/prometheus/common/version.BuildUser={{user}}@{{host}} | ||
-X github.com/prometheus/common/version.BuildDate={{date "20060102-15:04:05"}} | ||
tarball: | ||
files: | ||
- LICENSE | ||
- NOTICE |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,22 @@ | ||
.DEFAULT_GOAL := build | ||
# Copyright 2024 The Prometheus Authors | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
GIT_BRANCH ?= $(shell git rev-parse --abbrev-ref HEAD) | ||
GIT_REVISION ?= $(shell git rev-parse --short HEAD) | ||
VERSION ?= $(GIT_BRANCH)-$(GIT_REVISION) | ||
GO_LDFLAGS := -X main.version=${VERSION} | ||
# Needs to be defined before including Makefile.common to auto-generate targets | ||
DOCKER_ARCHS ?= amd64 armv7 arm64 | ||
DOCKER_REPO ?= prometheuscommunity | ||
|
||
build: | ||
go build -v -ldflags "$(GO_LDFLAGS)" -o yace ./cmd/yace | ||
include Makefile.common | ||
|
||
test: | ||
go test -v -bench=^$$ -race -count=1 ./... | ||
STATICCHECK_IGNORE = | ||
|
||
lint: | ||
golangci-lint run -v -c .golangci.yml | ||
DOCKER_IMAGE_NAME ?= yet-another-cloudwatch-exporter |
Oops, something went wrong.