ci config changes (#9001)
This commit is contained in:
parent
f5552944d1
commit
13a4657005
|
|
@ -1,6 +1,7 @@
|
|||
version: 2.1
|
||||
orbs:
|
||||
win: circleci/windows@2.4.0
|
||||
aws-cli: circleci/aws-cli@1.4.0
|
||||
|
||||
executors:
|
||||
go-1_15:
|
||||
|
|
@ -179,6 +180,20 @@ jobs:
|
|||
- store_artifacts:
|
||||
path: './dist'
|
||||
destination: 'build/dist'
|
||||
share-artifacts:
|
||||
executor: aws-cli/default
|
||||
steps:
|
||||
- aws-cli/setup:
|
||||
profile-name: TIGER
|
||||
aws-access-key-id: TIGER_AWS_ACCESS_KEY_ID
|
||||
aws-secret-access-key: TIGER_AWS_SECRET_ACCESS_KEY
|
||||
aws-region: TIGER_AWS_DEFAULT_REGION
|
||||
- run:
|
||||
command: |
|
||||
PR=${CIRCLE_PULL_REQUEST##*/}
|
||||
printf -v payload '{ "pullRequestNumber": "%s" }' "$PR"
|
||||
aws lambda invoke --function-name telegraf-tiger-prod-share_artifacts --profile TIGER --cli-binary-format raw-in-base64-out --payload "$payload" output.json
|
||||
|
||||
workflows:
|
||||
version: 2
|
||||
check:
|
||||
|
|
@ -227,6 +242,13 @@ workflows:
|
|||
- 'test-go-1_15-386'
|
||||
- 'test-go-1_16'
|
||||
- 'test-go-1_16-386'
|
||||
- 'share-artifacts':
|
||||
requires:
|
||||
- 'package'
|
||||
filters:
|
||||
branches:
|
||||
ignore:
|
||||
- master
|
||||
- 'release':
|
||||
requires:
|
||||
- 'test-go-windows'
|
||||
|
|
|
|||
Loading…
Reference in New Issue