Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ To send us a pull request, please:
1. Fork the repository.
1. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
1. Ensure that your contributions conform to the [style guide](https://docs.aws.amazon.com/embedded-csdk/202011.00/lib-ref/docs/doxygen/output/html/guide_developer_styleguide.html).
1. Format your code with uncrustify, using the config available in [FreeRTOS/CI-CD-Github-Actions](https://github.com/FreeRTOS/CI-CD-Github-Actions/blob/main/formatting/uncrustify.cfg).
1. Ensure local tests pass.
1. Commit to your fork using clear commit messages.
1. Send us a pull request, answering any default questions in the pull request interface.
Expand Down
15 changes: 15 additions & 0 deletions .github/memory_statistics_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"lib_name": "coreHTTP",
"src": [
"source/core_http_client.c",
"source/dependency/3rdparty/http_parser/http_parser.c"
],
"include": [
"source/include",
"source/interface",
"source/dependency/3rdparty/http_parser"
],
"compiler_flags": [
"HTTP_DO_NOT_USE_CUSTOM_CONFIG"
]
}
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,14 @@ jobs:
run: |
git-secrets --register-aws
git-secrets --scan
memory_statistics:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Measure sizes
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@main
with:
config: .github/memory_statistics_config.json
check_against: docs/doxygen/include/size_table.html
11 changes: 1 addition & 10 deletions .github/workflows/memory_statistics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,7 @@ jobs:
- name: Measure sizes
uses: FreeRTOS/CI-CD-Github-Actions/memory_statistics@main
with:
lib_name: coreHTTP
src: |
source/core_http_client.c
source/dependency/3rdparty/http_parser/http_parser.c
include: |
source/include
source/interface
source/dependency/3rdparty/http_parser
compiler_flags: |
HTTP_DO_NOT_USE_CUSTOM_CONFIG
config: .github/memory_statistics_config.json
- name: Upload table
uses: actions/upload-artifact@v2
with:
Expand Down
160 changes: 0 additions & 160 deletions tools/uncrustify.cfg

This file was deleted.