This repository has been archived by the owner on Oct 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50ee779
commit 505fe28
Showing
5,161 changed files
with
142 additions
and
2,353,179 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
Contributing to the LaunchDarkly SDK for Go | ||
================================================ | ||
|
||
We encourage pull-requests and other contributions from the community. We've also published an [SDK contributor's guide](http://docs.launchdarkly.com/docs/sdk-contributors-guide) that provides a detailed explanation of how our SDKs work. | ||
We encourage pull-requests and other contributions from the community. We've also published an [SDK contributor's guide](http://docs.launchdarkly.com/docs/sdk-contributors-guide) that provides a detailed explanation of how our SDKs work. | ||
|
||
Note that in order to run unit tests for the `redis`, `ldconsul`, and `lddynamodb` packages, you will need to have a local instance of the corresponding database running on its default port. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
jobs: | ||
- job: build | ||
pool: | ||
vmImage: 'vs2017-win2016' | ||
steps: | ||
- task: PowerShell@2 | ||
displayName: 'Move Source' | ||
inputs: | ||
targetType: inline | ||
workingDirectory: $(System.DefaultWorkingDirectory) | ||
script: | | ||
go version | ||
go env GOPATH | ||
mkdir C:\Users\VssAdministrator\go\src\gopkg.in\launchdarkly\go-client.v4 | ||
mv * C:\Users\VssAdministrator\go\src\gopkg.in\launchdarkly\go-client.v4\ | ||
- task: PowerShell@2 | ||
displayName: 'Setup Dynamo' | ||
inputs: | ||
targetType: inline | ||
workingDirectory: $(System.DefaultWorkingDirectory) | ||
script: | | ||
iwr -outf dynamo.zip https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.zip | ||
mkdir dynamo | ||
Expand-Archive -Path dynamo.zip -DestinationPath dynamo | ||
cd dynamo | ||
javaw -D"java.library.path=./DynamoDBLocal_lib" -jar DynamoDBLocal.jar | ||
- task: PowerShell@2 | ||
displayName: 'Setup Consul' | ||
inputs: | ||
targetType: inline | ||
workingDirectory: $(System.DefaultWorkingDirectory) | ||
script: | | ||
iwr -outf consul.zip https://releases.hashicorp.com/consul/1.4.2/consul_1.4.2_windows_amd64.zip | ||
mkdir consul | ||
Expand-Archive -Path consul.zip -DestinationPath consul | ||
cd consul | ||
sc.exe create "Consul" binPath="$(System.DefaultWorkingDirectory)/consul/consul.exe agent -dev" | ||
sc.exe start "Consul" | ||
- task: PowerShell@2 | ||
displayName: 'Setup Redis' | ||
inputs: | ||
targetType: inline | ||
workingDirectory: $(System.DefaultWorkingDirectory) | ||
script: | | ||
iwr -outf redis.zip https://github.com/MicrosoftArchive/redis/releases/download/win-3.0.504/Redis-x64-3.0.504.zip | ||
mkdir redis | ||
Expand-Archive -Path redis.zip -DestinationPath redis | ||
cd redis | ||
./redis-server --service-install | ||
./redis-server --service-start | ||
- task: PowerShell@2 | ||
displayName: 'Setup SDK and Test' | ||
inputs: | ||
targetType: inline | ||
workingDirectory: C:\Users\VssAdministrator\go\src\gopkg.in\launchdarkly\go-client.v4 | ||
script: | | ||
go get -t | ||
go test -race |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
vendor/github.com/aws/aws-sdk-go/.github/ISSUE_TEMPLATE.md
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
vendor/github.com/aws/aws-sdk-go/.github/PULL_REQUEST_TEMPLATE.md
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.