Skip to content

Commit

Permalink
Update submodule pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
kar-rahul-aws committed May 13, 2024
1 parent e8fd5be commit a258f81
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,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: "v3.2.0"
description: |
"A parser strictly enforcing the ECMA-404 JSON standard, suitable for microcontrollers. \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 −30 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
+63 −29 auto/generate_test_runner.rb
+83 −22 auto/parse_output.rb
+2 −2 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
+68 −36 meson.build
+3 −0 meson_options.txt
+17 −0 platformio-build.py
+11 −5 src/meson.build
+506 −128 src/unity.c
+49 −13 src/unity.h
+186 −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

0 comments on commit a258f81

Please sign in to comment.