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

Commit

Permalink
Update from Intelsdi-x pluginsync 0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
nanliu committed Dec 7, 2016
1 parent fb4cdde commit 79ec32b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Expand Up @@ -8,7 +8,7 @@ If you suspect your issue is a bug, please add as much context as you can using
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.
-->

**Snap version** (use `snaptel -v`):
**Snap daemon version** (use `snapteld -v`):

**Environment**:
- **Cloud provider or hardware configuration**:
Expand Down
2 changes: 1 addition & 1 deletion .pluginsync.yml
@@ -1,5 +1,5 @@
# File managed by pluginsync
pluginsync_config: '0.1.8'
pluginsync_config: '0.1.9'
managed_files:
- .github
- .github/ISSUE_TEMPLATE.md
Expand Down
9 changes: 5 additions & 4 deletions .travis.yml
Expand Up @@ -3,7 +3,7 @@ sudo: false
language: go
go:
- 1.6.3
- 1.7.1
- 1.7.3
env:
global:
- ORG_PATH=/home/travis/gopath/src/github.com/intelsdi-x
Expand Down Expand Up @@ -41,7 +41,7 @@ deploy:
on:
repo: intelsdi-x/snap-plugin-collector-apache
branch: master
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1"
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3"
- provider: s3
access_key_id: AKIAINMB43VSSPFZISAA
secret_access_key:
Expand All @@ -55,14 +55,15 @@ deploy:
on:
repo: intelsdi-x/snap-plugin-collector-apache
tags: true
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1"
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3"
- provider: releases
api_key:
secure: ES72ATHa8ZYVs7gXpjtxcIFPKnppjtm7TBFR/cKVFvpj6AN/19KGSTTIQ5IKsBcaVk2isKL43l6K0cML6ztjKJf7ZXO9dTDh6G/qfsC0/mF39Uo7+t7uRDyh8UZQSRyDxCtlLR3MJ3FGb6cwBrTNT15fEmmKkJ66ZkLtKbJIUa6l96wgxafZFWTJS4NXgcnTklHRgdbOuWkebdaJBFPQ+lyQZWmB8DdSfW0Aq/16nHunycOtvk2qTIXoRSS+c0gSekOtTRccoXa3qja5ao3sBaQYi+NkAt2T8GIBJZRbZJcerQDgsa3MuKzy7FKatI5Bxf1P5qCUhlbqUcg9Ire+58VUmeqkpOk10x2ydGyPtAERflD79kE3KhyWItZiKfBij2l2jHIrJWrJUBilPSzHiJQpKW9nNSC5ayb8IaRivtcn9L+WmVIXL980j+eTrTi0qG1kFZl5ROlbxjlh+1Yu7OrhCHN65MBAz61QCYrwvo4Umf/QDX0Tol5eHNfkSlXeUaHrMajfkrGOn+ES/lcvSPHp6FLWY2cX8DBeZZ4GgI3mf+AYqzF8ddR7SlEJGByp/lhyt4YGq67kiF5hXQQo5dyTFDRsv+01HHAtqPpcFPHHwSqxfujBa1tkpLTo7IQj8ABgqglM18g1qFGbTf7Q0afhd3Y618NwPqiDg9xJmW0=
file:
- release/snap-plugin-collector-apache_linux_x86_64
- release/snap-plugin-collector-apache_darwin_x86_64
skip_cleanup: true
on:
repo: intelsdi-x/snap-plugin-collector-apache
tags: true
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.1"
condition: $TEST_TYPE = "build" && $TRAVIS_GO_VERSION = "1.7.3"
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -34,7 +34,7 @@ $ git checkout -b some-topic-branch
* Open a pull request for the appropriate project.
* Contributors will review your pull request, suggest changes, and merge it when it’s ready and/or offer feedback.

If you have questions feel free to contact the [maintainers](https://github.com/intelsdi-x/snap/blob/master/README.md#maintainers).
If you have questions feel free to contact the [maintainers](https://github.com/intelsdi-x/snap/blob/master/docs/MAINTAINERS.md).

## Contributing Examples
The most immediately helpful way you can benefit this project is by cloning the repository, adding some further examples and submitting a pull request.
Expand Down
4 changes: 4 additions & 0 deletions scripts/build.sh
Expand Up @@ -46,3 +46,7 @@ export GOOS=linux
export GOARCH=amd64
mkdir -p "${build_dir}/${GOOS}/x86_64"
"${go_build[@]}" -o "${build_dir}/${GOOS}/x86_64/${plugin_name}" . || exit 1
export GOOS=darwin
export GOARCH=amd64
mkdir -p "${build_dir}/${GOOS}/x86_64"
"${go_build[@]}" -o "${build_dir}/${GOOS}/x86_64/${plugin_name}" . || exit 1
3 changes: 2 additions & 1 deletion scripts/test.sh
Expand Up @@ -84,7 +84,8 @@ elif [[ $TEST_TYPE == "medium" ]]; then
if [[ -f "${__dir}/medium.sh" ]]; then
. "${__dir}/medium.sh"
else
UNIT_TEST="go_test"
UNIT_TEST="go_test go_cover"
echo "mode: count" > profile.cov
test_unit
fi
elif [[ $TEST_TYPE == "large" ]]; then
Expand Down

0 comments on commit 79ec32b

Please sign in to comment.