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
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,13 @@ jobs:
submodules: true
fetch-depth: 0

# At time of writing the gitmodules are set not to pull
# Even when using fetch submodules. Need to run this command
# To force it to grab them.
- name: Perform Recursive Clone
shell: bash
run: git submodule update --checkout --init --recursive

- name: Run manifest verifier
uses: FreeRTOS/CI-CD-GitHub-Actions/manifest-verifier@main
with:
Expand Down
9 changes: 9 additions & 0 deletions manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,12 @@ version: "v1.3.0"
description: |
"Algorithm for calculating exponential backoff with jitter for network retry attempts.\n"
license: "MIT"

dependencies:
- name: "Unity"
version: v2.6.0
license: "MIT"
repository:
type: "git"
url: "https://github.com/ThrowTheSwitch/Unity.git"
path: test/unit-test/Unity
2 changes: 1 addition & 1 deletion test/unit-test/Unity
Submodule Unity updated 69 files
+35 −0 .github/workflows/main.yml
+8 −0 .gitignore
+0 −26 .travis.yml
+69 −33 CMakeLists.txt
+1 −1 LICENSE.txt
+108 −65 README.md
+0 −0 auto/__init__.py
+1 −1 auto/colour_reporter.rb
+15 −0 auto/extract_version.py
+29 −24 auto/generate_module.rb
+62 −28 auto/generate_test_runner.rb
+83 −22 auto/parse_output.rb
+1 −1 auto/run_test.erb
+54 −39 auto/stylize_as_junit.py
+1 −1 auto/stylize_as_junit.rb
+5 −3 auto/test_file_filter.rb
+1 −1 auto/type_sanitizer.rb
+7 −3 auto/unity_test_summary.rb
+22 −0 auto/yaml_helper.rb
+18 −0 docs/MesonGeneratorRunner.md
+107 −126 docs/ThrowTheSwitchCodingStandard.md
+273 −244 docs/UnityAssertionsReference.md
+93 −0 docs/UnityChangeLog.md
+385 −294 docs/UnityConfigurationGuide.md
+112 −121 docs/UnityGettingStartedGuide.md
+366 −111 docs/UnityHelperScriptsGuide.md
+13 −0 docs/UnityKnownIssues.md
+48 −0 examples/example_1/meson.build
+8 −1 examples/example_1/readme.txt
+3 −0 examples/example_1/subprojects/unity.wrap
+25 −21 examples/example_3/rakefile_helper.rb
+2 −2 examples/example_4/meson.build
+3 −1 examples/example_4/subprojects/unity.wrap
+3 −3 examples/example_4/test/test_runners/meson.build
+40 −0 extras/bdd/readme.md
+44 −0 extras/bdd/src/unity_bdd.h
+9 −0 extras/bdd/test/meson.build
+128 −0 extras/bdd/test/test_bdd.c
+16 −19 extras/fixture/readme.md
+10 −0 extras/fixture/src/meson.build
+12 −1 extras/fixture/src/unity_fixture.h
+27 −34 extras/memory/readme.md
+9 −0 extras/memory/src/meson.build
+18 −0 library.json
+71 −5 meson.build
+3 −0 meson_options.txt
+17 −0 platformio-build.py
+11 −5 src/meson.build
+504 −129 src/unity.c
+45 −9 src/unity.h
+183 −47 src/unity_internals.h
+6 −4 test/.rubocop.yml
+1 −0 test/Makefile
+5 −5 test/rakefile_helper.rb
+1 −0 test/targets/clang_strict.yml
+1 −0 test/testdata/Defs.h
+11 −3 test/testdata/testRunnerGenerator.c
+1 −5 test/testdata/testRunnerGeneratorSmall.c
+0 −4 test/testdata/testRunnerGeneratorWithMocks.c
+40 −2 test/tests/test_generate_test_runner.rb
+67 −1 test/tests/test_unity_arrays.c
+1 −1 test/tests/test_unity_core.c
+511 −0 test/tests/test_unity_doubles.c
+510 −0 test/tests/test_unity_floats.c
+15 −0 test/tests/test_unity_integers.c
+10 −1 test/tests/test_unity_integers_64.c
+140 −3 test/tests/test_unity_parameterized.c
+21 −0 test/tests/test_unity_parameterizedDemo.c
+14 −0 test/tests/types_for_test.h