Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 94a6ddb

Browse files
committed
Update from Intelsdi-x pluginsync 0.1.9
1 parent f44444c commit 94a6ddb

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ If you suspect your issue is a bug, please add as much context as you can using
88
As a basic rule, if you cannot provide enough information to continue addressing the issue within 7 days, a maintainer will close it. We will, however, reopen it if you later provide the information. Thanks again.
99
-->
1010

11-
**Snap version** (use `snapctl -v`):
11+
**Snap daemon version** (use `snapteld -v`):
1212

1313
**Environment**:
1414
- **Cloud provider or hardware configuration**:

.pluginsync.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# File managed by pluginsync
2-
pluginsync_config: '0.1.8'
2+
pluginsync_config: '0.1.9'
33
managed_files:
44
- .github
55
- .github/ISSUE_TEMPLATE.md
@@ -11,7 +11,6 @@ managed_files:
1111
- LICENSE
1212
- Makefile
1313
- scripts
14-
- scripts/build.sh
1514
- scripts/common.sh
1615
- scripts/deps.sh
1716
- scripts/pre_deploy.sh

.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ sudo: false
33
language: go
44
go:
55
- 1.6.3
6-
- 1.7.1
6+
- 1.7.3
77
env:
88
global:
99
- ORG_PATH=/home/travis/gopath/src/github.com/intelsdi-x
@@ -43,7 +43,7 @@ deploy:
4343
on:
4444
repo: intelsdi-x/snap-plugin-collector-psutil
4545
branch: master
46-
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1"
46+
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3"
4747
- provider: s3
4848
access_key_id: AKIAINMB43VSSPFZISAA
4949
secret_access_key:
@@ -57,7 +57,7 @@ deploy:
5757
on:
5858
repo: intelsdi-x/snap-plugin-collector-psutil
5959
tags: true
60-
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1"
60+
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3"
6161
- provider: releases
6262
api_key:
6363
secure: r6hwOMU7YUxuWLoBFjZJ/LeNr469XmpCmcUVh8dHYYjLK4XrAQZej+kiaqhJh289ZeCdlwDTKZN/pcd+miiOBS50c/wjmSQKyhCY29U6olkQf2dPbpvn3ICoSgfD09BumXmaGWEc9jo+VVYJBp/m7Nb1bpka4zwj7XlSn7k0z820kKHlokH4Fe3jKZWoWNSRrJfU5fiOqzq6B1rXa+Upjt8QButZd68BUuSL/1PONtUoF691+ao6+cqBYDsWl5cViEFsaX/wGNuBVWHF4unJl4dPaJhaTv3STAPbGZdaxfm28WCJ9ERllTCEnHdU2nSaXNLMeba4XVp1kXsy63nyKSq3WVu/+uD6qPaTqYXIxGhqkkb1Htxnz6y+bxgniYU9wGAQdHbyjC1/Dhj+++w+MOHNlSOcxfZyTKLdozXa96jXOwIE4XU1NXN3OvYiIaCW0Tb1n9kAaTn92jMycrlnAXTPLVE+QwJ/WXV5ureqmzO9llr/fjoxHGo878o2oz3yn+LT5Kg3hmkZBn60JlhuM72CRN9D5zEhIL/5C+rDFlMIESdppT3g/9nH/MsQSKZW/Yx06TZnxlhQprvQE4EmOX36bGfdKodpX4XZh59U7YPjsvmT0AEb+rs2zbTjEVbbkq98ECLWbGvQ+dpw3hPwrI97vj/fXG7sjf5N99ogb+Y=
@@ -67,4 +67,4 @@ deploy:
6767
on:
6868
repo: intelsdi-x/snap-plugin-collector-psutil
6969
tags: true
70-
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1"
70+
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3"

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $ git checkout -b some-topic-branch
3434
* Open a pull request for the appropriate project.
3535
* Contributors will review your pull request, suggest changes, and merge it when it’s ready and/or offer feedback.
3636
37-
If you have questions feel free to contact the [maintainers](https://github.com/intelsdi-x/snap/blob/master/README.md#maintainers).
37+
If you have questions feel free to contact the [maintainers](https://github.com/intelsdi-x/snap/blob/master/docs/MAINTAINERS.md).
3838
3939
## Contributing Examples
4040
The most immediately helpful way you can benefit this project is by cloning the repository, adding some further examples and submitting a pull request.

scripts/test.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,8 @@ elif [[ $TEST_TYPE == "medium" ]]; then
8484
if [[ -f "${__dir}/medium.sh" ]]; then
8585
. "${__dir}/medium.sh"
8686
else
87-
UNIT_TEST="go_test"
87+
UNIT_TEST="go_test go_cover"
88+
echo "mode: count" > profile.cov
8889
test_unit
8990
fi
9091
elif [[ $TEST_TYPE == "large" ]]; then

0 commit comments

Comments
 (0)