Skip to content

Commit

Permalink
Merge 582ce6c into b2b05c8
Browse files Browse the repository at this point in the history
  • Loading branch information
disa6302 authored Aug 25, 2023
2 parents b2b05c8 + 582ce6c commit abf0342
Show file tree
Hide file tree
Showing 1,585 changed files with 4,038 additions and 1,278 deletions.
76 changes: 76 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
---
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug", "needs-triage"]
assignees: []
body:
- type: checkboxes
attributes:
label: Please confirm you have already done the following
options:
- label: I have searched the repository for related/existing bug reports
- label: I have all the details the issue requires
validations:
required: true
- type: textarea
id: description
attributes:
label: Describe the bug
description: What is the problem? A clear and concise description of the bug.
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: |
What is the expected behavior?
validations:
required: true
- type: textarea
id: current
attributes:
label: Current Behavior
description: |
What actually happened?
Please include full errors, uncaught exceptions, stack traces, and relevant VERBOSE logs.
To get relevant VERBOSE logs from the SDK, you can retrieve by running `export AWS_KVS_LOG_LEVEL=1`
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: Reproduction Steps
description: |
Provide a self-contained, concise snippet of code that can be used to reproduce the issue.
For more complex issues provide a repo with the smallest sample that reproduces the bug.
Avoid including business logic or unrelated code, it makes diagnosis more difficult.
validations:
required: true
- type: input
id: sdk-version
attributes:
label: WebRTC C SDK version being used
validations:
required: true
- type: input
id: compiler-version
attributes:
label: Compiler and Version used
description: gcc --version / Visual Studio / clang --version
validations:
required: true
- type: input
id: operating-system
attributes:
label: Operating System and version
validations:
required: true
- type: input
id: platform
attributes:
label: Platform being used
validations:
required: true
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
blank_issues_enabled: false
contact_links:
- name: General Question
url: https://github.com/awslabs/amazon-kinesis-video-streams-webrtc-sdk-c/discussions
about: Please ask and answer questions as a discussion thread
22 changes: 0 additions & 22 deletions .github/ISSUE_TEMPLATE/contribution.md

This file was deleted.

31 changes: 31 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
name: "Documentation Issue"
description: Report an issue in the github Readme. For issues in AWS documentation pages, submit feedback on the concerned AWS page
title: "[Documentation]: "
labels: ["documentation", "needs-triage"]
assignees: []
body:
- type: checkboxes
attributes:
label: Please confirm you have already done the following
options:
- label: I have searched the repository for related/existing documentation issue reports
- label: I have all the details the issue requires
validations:
required: true
- type: textarea
id: description
attributes:
label: Describe the issue
description: A clear and concise description of the issue.
validations:
required: true

- type: textarea
id: links
attributes:
label: Links
description: |
Include links to affected documentation page(s).
validations:
required: true
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

46 changes: 46 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: Feature Request
description: Suggest an idea for this project
title: "[Feature request]: "
labels: [feature-request, needs-triage]
assignees: []
body:
- type: checkboxes
attributes:
label: Please confirm you have already done the following
options:
- label: I have searched the repository for related/existing feature requests
- label: I have all the details the issue requires
validations:
required: true
- type: textarea
id: description
attributes:
label: Describe the feature
description: A clear and concise description of the feature you are proposing.
validations:
required: true
- type: textarea
id: use-case
attributes:
label: Use Case
description: |
Why do you need this feature?
validations:
required: true
- type: textarea
id: solution
attributes:
label: Proposed Solution
description: |
Suggest how to implement the addition or change. Please include prototype/workaround/sketch/reference implementation.
validations:
required: false
- type: textarea
id: other
attributes:
label: Other Information
description: |
Any alternative solutions or features you considered, a more detailed explanation, stack traces, related issues, links for context, etc.
validations:
required: false
7 changes: 6 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
*Issue #, if available:*

*Description of changes:*
*What was changed?*

*Why was it changed?*

*How was it changed?*

*What testing was done for the changes?*

By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
6 changes: 6 additions & 0 deletions .github/build_windows_mbedtls.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
mkdir build
cd build
cmd.exe /c cmake -G "NMake Makefiles" ..
cmake -G "NMake Makefiles" -DUSE_OPENSSL=OFF -DUSE_MBEDTLS=ON -DBUILD_TEST=TRUE -DEXT_PTHREAD_INCLUDE_DIR="C:/tools/pthreads-w32-2-9-1-release/Pre-built.2/include/" -DEXT_PTHREAD_LIBRARIES="C:/tools/pthreads-w32-2-9-1-release/Pre-built.2/lib/x64/libpthreadGC2.a" ..
nmake
6 changes: 6 additions & 0 deletions .github/build_windows_openssl.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x86_amd64
mkdir build
cd build
cmd.exe /c cmake -G "NMake Makefiles" ..
cmake -G "NMake Makefiles" -DBUILD_TEST=TRUE -DEXT_PTHREAD_INCLUDE_DIR="C:/tools/pthreads-w32-2-9-1-release/Pre-built.2/include/" -DEXT_PTHREAD_LIBRARIES="C:/tools/pthreads-w32-2-9-1-release/Pre-built.2/lib/x64/libpthreadGC2.a" ..
nmake
Loading

0 comments on commit abf0342

Please sign in to comment.