We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70248a7 commit 7c88547Copy full SHA for 7c88547
.github/workflows/go.yml
@@ -2,10 +2,6 @@ name: Go CI
2
3
on:
4
push:
5
- branches:
6
- - main
7
- - release-*
8
- - v*
9
paths:
10
- glide-core/src/**
11
- glide-core/redis-rs/redis/src/**
go/Makefile
@@ -54,8 +54,8 @@ install-dev-tools:
54
install-tools: install-build-tools install-dev-tools
55
56
build: build-glide-client generate-protobuf
57
- go build ./...
58
- cd benchmarks && go build -ldflags="-w" ./...
+ go build -x ./...
+ cd benchmarks && go build -x -ldflags="-w" ./...
59
60
build-debug: build-glide-client-debug generate-protobuf
61
go build -gcflags "-l -N" ./...
0 commit comments