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

Release v1.0.8 #65

Merged
merged 1 commit into from
Sep 25, 2023
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
2 changes: 1 addition & 1 deletion .github/template/fwe-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ runs:
with:
name: build-${{ inputs.upload-arch }}
path: |
build/src/executionmanagement/aws-iot-fleetwise-edge
build/aws-iot-fleetwise-edge
build/aws-iot-fleetwise-edge-${{ inputs.upload-arch }}.tar.gz
build/Testing/Temporary/
build/**/report-*.xml
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
build-arch: "native"
upload-arch: "amd64"
cache-paths: /usr/local/x86_64-linux-gnu
dist-files: build/src/executionmanagement/aws-iot-fleetwise-edge:.
dist-files: build/aws-iot-fleetwise-edge:.

build-arm64:
runs-on: ubuntu-20.04
Expand All @@ -49,7 +49,7 @@ jobs:
build-arch: "cross-arm64"
upload-arch: "arm64"
cache-paths: /usr/local/aarch64-linux-gnu:/usr/local/x86_64-linux-gnu
dist-files: build/src/executionmanagement/aws-iot-fleetwise-edge:.
dist-files: build/aws-iot-fleetwise-edge:.

build-armhf:
runs-on: ubuntu-20.04
Expand All @@ -60,7 +60,7 @@ jobs:
build-arch: "cross-armhf"
upload-arch: "armhf"
cache-paths: /usr/local/arm-linux-gnueabihf:/usr/local/x86_64-linux-gnu
dist-files: build/src/executionmanagement/aws-iot-fleetwise-edge:.
dist-files: build/aws-iot-fleetwise-edge:.

build-android:
runs-on: ubuntu-20.04
Expand All @@ -70,11 +70,11 @@ jobs:
with:
build-arch: "cross-android"
upload-arch: "android"
cache-paths: /usr/local/aarch64-linux-android:/usr/local/armv7a-linux-androideabi:/usr/local/x86_64-linux-gnu
cache-paths: /usr/local/x86_64-linux-android:/usr/local/aarch64-linux-android:/usr/local/armv7a-linux-androideabi:/usr/local/x86_64-linux-gnu
dist-files:
build/x86_64/src/executionmanagement/libaws-iot-fleetwise-edge.so:x86_64
build/armeabi-v7a/src/executionmanagement/libaws-iot-fleetwise-edge.so:armeabi-v7a
build/arm64-v8a/src/executionmanagement/libaws-iot-fleetwise-edge.so:arm64-v8a
build/x86_64/libaws-iot-fleetwise-edge.so:x86_64
build/armeabi-v7a/libaws-iot-fleetwise-edge.so:armeabi-v7a
build/arm64-v8a/libaws-iot-fleetwise-edge.so:arm64-v8a
- name: build-app
run: |
mkdir -p tools/android-app/app/src/main/jniLibs
Expand Down
46 changes: 34 additions & 12 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,23 @@ repos:
- id: detect-aws-credentials
args: [--allow-missing-credentials]
- id: detect-private-key
- repo: local
hooks:
- id: replace-c-headers
name: replace-c-headers
entry: |
sed -i -e 's/#include <stdint.h>/#include <cstdint>/'
-e 's/#include <stddef.h>/#include <cstddef>/'
-e 's/#include <stdlib.h>/#include <cstdlib>/'
-e 's/#include <math.h>/#include <cmath>/'
-e 's/#include <string.h>/#include <cstring>/'
-e 's/#include <ctype.h>/#include <cctype>/'
-e 's/#include <stdio.h>/#include <cstdio>/'
-e 's/#include <time.h>/#include <ctime>/'
-e 's/#include <limits.h>/#include <climits>/'
language: system
verbose: true
types: [c++]
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v10.0.1
hooks:
Expand Down Expand Up @@ -81,27 +98,32 @@ repos:
hooks:
- id: validate-static-config
name: validate-static-config
# pre-commit intentionally pass all files as args to the command.
# Since the json command only takes one file at once we need some shell script to split the args.
entry:
bash -c 'for x in "$@"; do echo "Validating file $x"; json validate --schema-file
interfaces/protobuf/schemas/edgeConfiguration/staticConfiguration.json --document-file
"$x"; done' --
check-jsonschema --schemafile
interfaces/protobuf/schemas/edgeConfiguration/staticConfiguration.json --
language: python
files: "configuration/static-config.json|tools/android-app/app/src/main/assets/config-0.json"
types: [json]
additional_dependencies: ["json-spec==0.10.1"]
additional_dependencies: ["check-jsonschema==0.25.0"]
verbose: true
- id: validate-persistency-metadata
name: validate-persistency-metadata
# pre-commit intentionally pass all files as args to the command.
# Since the json command only takes one file at once we need some shell script to split the args.
entry:
bash -c 'for x in "$@"; do echo "Validating file $x"; json validate --schema-file
interfaces/persistency/schemas/persistencyMetadataFormat.json --document-file "$x"; done'
--
check-jsonschema --schemafile
interfaces/persistency/schemas/persistencyMetadataFormat.json --
language: python
files: "interfaces/persistency/examples/persistencyMetadataFormat.json"
types: [json]
additional_dependencies: ["json-spec==0.10.1"]
additional_dependencies: ["check-jsonschema==0.25.0"]
verbose: true
- id: validate-build-files
name: validate-build-files
entry:
bash -e -c 'FILE_MISSING=false; for FILE in "$@"; do if ! grep -q "${FILE}"
CMakeLists.txt; then echo "${FILE} is missing from CMakeLists.txt"; FILE_MISSING=true; fi;
done; if ${FILE_MISSING}; then exit -1; fi' --
language: python
files: "^src|^test/unit"
exclude: "^test/unit/support"
types: [c++]
verbose: true
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Change Log

## v1.0.8 (2023-09-25)

Bug fixes:

- Update AWS C++ SDK to v1.11.148, which includes an
[important bugfix](https://github.com/awslabs/aws-c-mqtt/pull/311) for MQTT 3.1.1 clients.

Improvements:

- Add support for building as a library exported by CMake. Set the CMake option
`FWE_BUILD_EXECUTABLE` to `OFF`, then use `find_package(AwsIotFwe)`, `${AwsIotFwe_INCLUDE_DIR}`
and link with `AwsIotFwe::AwsIotFwe`.
- Non-functional source code improvements:
- Simplify `src/` folder structure, removing sub-namespaces & sub-libraries, and moving unit test
files to `test/unit/`.
- Correct `#include`s using
[`include-what-you-use`](https://github.com/include-what-you-use/include-what-you-use).
- Move from compile-time mocking to link-time mocking of AWS C++ SDK using Google Mock.
- Fix GitHub CI: support separate Ubuntu package mirror file, fix caching of Android install files.
- Add support for shared libraries to dependency install scripts.
- Developer guide and demo script improvements:
- Add clean up instructions.
- Better support existing S3 buckets, with check for same region & ACLs being disabled, and allow
setting of bucket policy.
- Allow HTML generation of results for custom DBC files.

## v1.0.7 (2023-08-01)

Features:
Expand Down
Loading