-
Notifications
You must be signed in to change notification settings - Fork 423
/
.travis.yml
35 lines (31 loc) · 967 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
language: go
go:
- "1.13.x"
- "1.16.x"
- "1.18.x"
go_import_path: github.com/apache/rocketmq-client-go/v2
env:
global:
- NAME_SERVER_ADDRESS=127.0.0.1:9876
- BROKER_ADDRESS=127.0.0.1:10911
- TOPIC=test
- GROUP=testGroup
- GO111MODULE=on
- HOME=$TRAVIS_HOME
matrix:
- OS_TYPE=centos OS_VERSION=7
before_script:
- export PROJECT_PATH=`pwd`
- cd ${TRAVIS_HOME}
- wget https://archive.apache.org/dist/rocketmq/4.6.0/rocketmq-all-4.6.0-bin-release.zip
- unzip rocketmq-all-4.6.0-bin-release.zip
- cd rocketmq-all-4.6.0-bin-release
- perl -i -pe's/-Xms8g -Xmx8g -Xmn4g/-Xms2g -Xmx2g -Xmn1g/g' bin/runbroker.sh
- nohup sh bin/mqnamesrv &
- nohup sh bin/mqbroker -n localhost:9876 &
script:
- cd ${PROJECT_PATH}
#- go fmt ./... && [[ -z `git status -s` ]]
- go test ./... -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash) || echo 'Codecov failed to upload'