Skip to content

Commit 6f79acc

Browse files
committed
Remove circleci config
We have moved to GitHub Actions, so disable CircleCI jobs. Will revisit removing this file in the future. Signed-off-by: Joe Adams <[email protected]>
1 parent 7b794ff commit 6f79acc

File tree

2 files changed

+24
-39
lines changed

2 files changed

+24
-39
lines changed

.circleci/config.yml

+22-38
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,36 @@
11
---
2+
# This project has switched to GitHub actions.
3+
# Circle CI is not disabled repository-wise so that previous pull requests
4+
# continue working.
5+
# This file does not generate any CircleCI workflow.
6+
27
version: 2.1
3-
orbs:
4-
prometheus: prometheus/[email protected]
8+
59
executors:
6-
# This must match .promu.yml.
10+
711
golang:
812
docker:
9-
- image: cimg/go:1.23
13+
- image: busybox
14+
1015
jobs:
11-
test:
16+
noopjob:
1217
executor: golang
18+
1319
steps:
14-
- prometheus/setup_environment
15-
- run: make
16-
- prometheus/store_artifact:
17-
file: elasticsearch_exporter
20+
- run:
21+
command: "true"
22+
23+
1824
workflows:
1925
version: 2
2026
elasticsearch_exporter:
2127
jobs:
22-
- test:
28+
- noopjob
29+
triggers:
30+
- schedule:
31+
cron: "0 0 30 2 *"
2332
filters:
24-
tags:
25-
only: /.*/
26-
- prometheus/build:
27-
name: build
28-
filters:
29-
tags:
30-
only: /.*/
31-
- prometheus/publish_master:
32-
context: org-context
33-
docker_hub_organization: prometheuscommunity
34-
quay_io_organization: prometheuscommunity
35-
requires:
36-
- test
37-
- build
38-
filters:
39-
branches:
40-
only: master
41-
- prometheus/publish_release:
42-
context: org-context
43-
docker_hub_organization: prometheuscommunity
44-
quay_io_organization: prometheuscommunity
45-
requires:
46-
- test
47-
- build
48-
filters:
49-
tags:
50-
only: /^v.*/
5133
branches:
52-
ignore: /.*/
34+
only:
35+
- main
36+
- master

.promu.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
go:
2-
# This must match .circle/config.yml.
2+
# Whenever the Go version is updated here,
3+
# .github/workflows should also be updated.
34
version: 1.23
45
repository:
56
path: github.com/prometheus-community/elasticsearch_exporter

0 commit comments

Comments
 (0)