Fix flapping acceptance test
Signed-off-by: QuentinBisson <quentin@giantswarm.io>
This commit is contained in:
parent
87915dc652
commit
4aea4560ce
|
@ -42,7 +42,7 @@ jobs:
|
|||
test:
|
||||
docker:
|
||||
# Whenever the Go version is updated here, .promu.yml should also be updated.
|
||||
- image: circleci/golang:1.15
|
||||
- image: circleci/golang:1.16
|
||||
# maildev containers are for running the email tests against a "real" SMTP server.
|
||||
# See notify/email_test.go for details.
|
||||
- image: djfarrelly/maildev:1.1.0
|
||||
|
|
|
@ -20,6 +20,11 @@ if ! [[ $(protoc --version) =~ "3.15.8" ]]; then
|
|||
fi
|
||||
|
||||
echo "installing plugins"
|
||||
|
||||
# Since we run go mod download, the go.sum will change.
|
||||
# Make a backup.
|
||||
cp go.sum go.sum.bak
|
||||
|
||||
go mod download
|
||||
|
||||
INSTALL_PKGS="golang.org/x/tools/cmd/goimports github.com/gogo/protobuf/protoc-gen-gogofast"
|
||||
|
@ -46,3 +51,5 @@ for dir in ${DIRS}; do
|
|||
goimports -w *.pb.go
|
||||
popd
|
||||
done
|
||||
|
||||
mv go.sum.bak go.sum
|
|
@ -176,7 +176,7 @@ route:
|
|||
receiver: "default"
|
||||
group_by: [alertname]
|
||||
group_wait: 1s
|
||||
group_interval: 1s
|
||||
group_interval: 2s
|
||||
repeat_interval: 3s
|
||||
|
||||
receivers:
|
||||
|
|
Loading…
Reference in New Issue