Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable warning related to the use of the unique_ptr with the fclose function as the deleter #499

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
89000cd
Modified condition to create default sample shadow directory
Oct 17, 2024
43159e9
Merge branch 'awslabs:main' into main
ig15 Nov 6, 2024
bbeb386
Updated versions in build.yml for aws credential fetch
ig15 Nov 6, 2024
f995850
Merge pull request #1 from ig15/ig15-update-version-for-aws-credentials
ig15 Nov 6, 2024
219900d
Updated build.yml to revert version of configure-aws-credentials to v1
ig15 Nov 6, 2024
01630a7
Updated aws-credentials fetching mechanism version in build.yml
ig15 Nov 6, 2024
8adb376
Merge branch 'awslabs:main' into main
ig15 Nov 6, 2024
047be94
Merge branch 'main' of https://github.com/awslabs/aws-iot-device-client
Nov 11, 2024
ddc87c6
Add job document comparator to ignore pre-signed difference in s3 url
Nov 11, 2024
8235bd3
Merge branch 'main' of https://github.com/ig15/ishangg-aws-iot-device…
Nov 11, 2024
8fad21a
Remove unit test for the compareJobsDocument and make it private
Nov 12, 2024
31044e7
Merge branch 'main' of https://github.com/awslabs/aws-iot-device-client
Nov 14, 2024
412a0da
Refactor compareJobDocuments comments
Nov 14, 2024
9b266d6
Merge branch 'awslabs:main' into main
ig15 Nov 14, 2024
4b587d6
Merge branch 'awslabs:main' into main
ig15 Nov 15, 2024
0942527
Fix clang-format in multiple files
Nov 20, 2024
0772be2
Merge branch 'main' of https://github.com/ig15/ishangg-aws-iot-device…
Nov 20, 2024
06f7fc7
Merge branch 'main' of https://github.com/ig15/ishangg-aws-iot-device…
Nov 20, 2024
0358776
Merge branch 'main' of https://github.com/awslabs/aws-iot-device-client
Nov 21, 2024
7abec1c
Merge branch 'main' of https://github.com/awslabs/aws-iot-device-client
Nov 26, 2024
abd2d5c
Merge branch 'main' of https://github.com/ig15/ishangg-aws-iot-device…
Mar 3, 2025
2070848
Send data from local service to the IOT tunnel in chunks
Mar 5, 2025
bbd61bd
Merge branch 'main' of https://github.com/awslabs/aws-iot-device-client
Mar 18, 2025
ebe72d5
Merge branch 'awslabs:main' into main
ig15 Mar 19, 2025
ae5e926
Merge branch 'main' of https://github.com/ig15/ishangg-aws-iot-device…
Mar 19, 2025
0acb956
Add new field in Config test
Mar 19, 2025
a8b5ee9
Merge branch 'main' of https://github.com/awslabs/aws-iot-device-client
Mar 20, 2025
be2e50a
Install compiler versions explicitly to fix sonarcloud workflow
Mar 20, 2025
1868438
Disable warning related to the use of the unique_ptr with the fclose …
Mar 20, 2025
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
6 changes: 5 additions & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ jobs:
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Install sonar-scanner and build-wrapper
- name: Install GCC 9
run: |
sudo apt-get update
sudo apt-get install -y gcc-9 g++-9
- name: Install sonar-scanner and build-wrapper
uses: sonarsource/sonarcloud-github-c-cpp@v3
- name: Run build-wrapper
run: |
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ option(EXCLUDE_SECURE_ELEMENT "Builds the device client without the support for
option(EXCLUDE_SENSOR_PUBLISH "Builds the device client without the Sensor Publish over MQTT Feature." OFF)
option(EXCLUDE_SENSOR_PUBLISH_SAMPLES "Builds the device client without the Sensor Publish sample servers." OFF)
option(GIT_VERSION "Updates the version number using the Git commit history" ON)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-ignored-attributes")

if (EXCLUDE_JOBS)
add_definitions(-DEXCLUDE_JOBS)
Expand Down
Loading