Skip to content

Commit 1d50d82

Browse files
removed go build in circleci
1 parent b43ff6f commit 1d50d82

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.circleci/config.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ executors:
44
go-executor:
55
docker:
66
- image: cimg/go:1.22.6
7-
working_directory: ~/go/src/github.com/coderabbitai/grafana
7+
working_directory: ~/github.com/grafana
88

99
node-executor:
1010
docker:
1111
- image: cimg/node:22.7.0
1212
working_directory: ~/frontend
1313

1414
jobs:
15-
build-backend:
15+
go-mod-install:
1616
executor: go-executor
1717
steps:
1818
- checkout
@@ -30,9 +30,6 @@ jobs:
3030
paths:
3131
- ~/go/pkg/mod
3232
key: go-mod-cache-{{ checksum "go.sum" }}
33-
- run:
34-
name: Run Grafana backend
35-
command: go run ./pkg/cmd/grafana/main.go
3633

3734
build-frontend:
3835
executor: node-executor
@@ -57,5 +54,5 @@ workflows:
5754
version: 2
5855
build-and-test:
5956
jobs:
60-
- build-backend
57+
- go-mod-install
6158
- build-frontend

0 commit comments

Comments
 (0)