Skip to content

Commit

Permalink
Merge pull request #726 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
IC: Caelum-rc4+dev67
  • Loading branch information
dzbaker committed Jan 10, 2024
2 parents 18e228d + bbc6136 commit 45d978d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,6 @@ jobs:
runs-on: ubuntu-20.04
timeout-minutes: 15
steps:
# Check github pull-request title against the pattern.
- name: Check pull-request title
uses: gsactions/commit-message-checker@v2
with:
pattern: '^((Fix|HotFix|Part)\s\#[0-9]+,\s[a-zA-Z0-9]+|Merge\spull\srequest\s\#[0-9]+\s[a-zA-Z0-9]+|IC:\s[a-zA-Z0-9]+)'
error: 'You need at least one "Fix|HotFix|Part #<issue number>, <short description>" line in the pull-request title.'
excludeDescription: 'true'
excludeTitle: 'false'
checkAllCommitMessages: 'false'
# Check each commit message associated with the pull-request against the pattern.
- name: Check each commit message
uses: gsactions/commit-message-checker@v2
Expand Down
2 changes: 1 addition & 1 deletion apps/sch_lab
2 changes: 1 addition & 1 deletion psp
Submodule psp updated 57 files
+4 −0 CHANGELOG.md
+1 −1 CMakeLists.txt
+693 −194 fsw/inc/cfe_psp.h
+1 −1 fsw/mcp750-vxworks/inc/psp_version.h
+6 −7 fsw/mcp750-vxworks/src/cfe_psp_exception.c
+1 −1 fsw/mcp750-vxworks/src/cfe_psp_memory.c
+6 −14 fsw/mcp750-vxworks/src/cfe_psp_ssr.c
+40 −86 fsw/mcp750-vxworks/src/cfe_psp_support.c
+36 −72 fsw/mcp750-vxworks/src/cfe_psp_watchdog.c
+42 −129 fsw/modules/eeprom_direct/cfe_psp_eeprom_direct.c
+36 −127 fsw/modules/port_direct/cfe_psp_port_direct.c
+36 −125 fsw/modules/ram_direct/cfe_psp_ram_direct.c
+12 −29 fsw/modules/timebase_posix_clock/cfe_psp_timebase_posix_clock.c
+18 −41 fsw/modules/timebase_vxworks/cfe_psp_timebase_vxworks.c
+7 −9 fsw/pc-linux/src/cfe_psp_exception.c
+48 −99 fsw/pc-linux/src/cfe_psp_memory.c
+6 −12 fsw/pc-linux/src/cfe_psp_ssr.c
+1 −1 fsw/pc-linux/src/cfe_psp_start.c
+42 −87 fsw/pc-linux/src/cfe_psp_support.c
+36 −70 fsw/pc-linux/src/cfe_psp_watchdog.c
+1 −1 fsw/pc-rtems/inc/psp_version.h
+7 −8 fsw/pc-rtems/src/cfe_psp_exception.c
+48 −96 fsw/pc-rtems/src/cfe_psp_memory.c
+6 −14 fsw/pc-rtems/src/cfe_psp_ssr.c
+1 −1 fsw/pc-rtems/src/cfe_psp_start.c
+40 −86 fsw/pc-rtems/src/cfe_psp_support.c
+36 −70 fsw/pc-rtems/src/cfe_psp_watchdog.c
+18 −12 fsw/shared/src/cfe_psp_exceptionstorage.c
+24 −107 fsw/shared/src/cfe_psp_memrange.c
+16 −48 fsw/shared/src/cfe_psp_memutils.c
+4 −5 unit-test-coverage/CMakeLists.txt
+3 −3 unit-test-coverage/mcp750-vxworks/adaptors/CMakeLists.txt
+3 −3 unit-test-coverage/mcp750-vxworks/src/coveragetest-cfe-psp-support.c
+1 −1 unit-test-coverage/modules/CMakeLists.txt
+50 −0 unit-test-coverage/pc-rtems/CMakeLists.txt
+51 −0 unit-test-coverage/pc-rtems/src/coveragetest-cfe-psp-exception.c
+143 −0 unit-test-coverage/pc-rtems/src/coveragetest-cfe-psp-memory.c
+31 −0 unit-test-coverage/pc-rtems/src/coveragetest-cfe-psp-ssr.c
+85 −0 unit-test-coverage/pc-rtems/src/coveragetest-cfe-psp-start.c
+63 −0 unit-test-coverage/pc-rtems/src/coveragetest-cfe-psp-support.c
+60 −0 unit-test-coverage/pc-rtems/src/coveragetest-cfe-psp-watchdog.c
+70 −0 unit-test-coverage/pc-rtems/src/coveragetest-psp-pc-rtems.c
+74 −0 unit-test-coverage/pc-rtems/src/coveragetest-psp-pc-rtems.h
+8 −7 unit-test-coverage/ut-stubs/CMakeLists.txt
+31 −0 unit-test-coverage/ut-stubs/inc/PCS_bsdnet.h
+26 −0 unit-test-coverage/ut-stubs/inc/PCS_dhcs_failsafe.h
+49 −0 unit-test-coverage/ut-stubs/inc/PCS_rtems.h
+1 −0 unit-test-coverage/ut-stubs/inc/PCS_stdlib.h
+15 −16 unit-test-coverage/ut-stubs/inc/README.md
+23 −0 unit-test-coverage/ut-stubs/override_inc/bsp.h
+34 −0 unit-test-coverage/ut-stubs/override_inc/rtems.h
+30 −0 unit-test-coverage/ut-stubs/override_inc/rtems/rtems_bsdnet.h
+23 −0 unit-test-coverage/ut-stubs/override_inc/rtems/rtems_dhcp_failsafe.h
+1 −0 unit-test-coverage/ut-stubs/override_inc/stdlib.h
+5 −0 unit-test-coverage/ut-stubs/src/libc-stdlib-stubs.c
+53 −0 unit-test-coverage/ut-stubs/src/rtems-bsdnet-stubs.c
+13 −35 ut-stubs/ut_psp_stubs.c

0 comments on commit 45d978d

Please sign in to comment.