Skip to content

Add static_cast to ambiguous serialize call in FpySequencer #550

Add static_cast to ambiguous serialize call in FpySequencer

Add static_cast to ambiguous serialize call in FpySequencer #550

Workflow file for this run

name: "Code Format Check"
on:
push:
branches: [ devel, release/**, ci/** ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ devel, release/** ]
paths-ignore:
- 'docs/**'
- '**.md'
- '.github/actions/spelling/**'
- '.github/ISSUE_TEMPLATE/**'
jobs:
cpp-formatting:
name: C++ Formatting
runs-on: ubuntu-22.04
steps:
- name: "Checkout F´ Repository"
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: "Setup Python"
uses: actions/setup-python@v5
with:
python-version: 3.12
- uses: ./.github/actions/setup
- name: "Check C++ Formatting"
env:
# Svc is currently listing all but Svc/FpySequencer
CHECKED_DIRS: >-
Drv
Fw
Os
Svc/ActiveRateGroup
Svc/ActiveTextLogger
Svc/AssertFatalAdapter
Svc/BufferAccumulator
Svc/BufferLogger
Svc/BufferManager
Svc/BufferRepeater
Svc/Ccsds
Svc/ChronoTime
Svc/CmdDispatcher
Svc/CmdSequencer
Svc/CmdSplitter
Svc/ComLogger
Svc/ComQueue
Svc/ComSplitter
Svc/ComStub
Svc/Cycle
Svc/DpCatalog
Svc/DpManager
Svc/DpPorts
Svc/DpWriter
Svc/EventManager
Svc/Fatal
Svc/FatalHandler
Svc/FileDownlink
Svc/FileDownlinkPorts
Svc/FileManager
Svc/FileUplink
Svc/FprimeDeframer
Svc/FprimeFramer
Svc/FprimeProtocol
Svc/FprimeRouter
Svc/FrameAccumulator
Svc/FramingProtocol
Svc/GenericHub
Svc/Health
Svc/Interfaces
Svc/LinuxTimer
Svc/OsTime
Svc/PassiveConsoleTextLogger
Svc/PassiveRateGroup
Svc/Ping
Svc/PolyDb
Svc/PolyIf
Svc/Ports
Svc/PosixTime
Svc/PrmDb
Svc/RateGroupDriver
Svc/Sched
Svc/Seq
Svc/SeqDispatcher
Svc/StaticMemory
Svc/Subtopologies
Svc/SystemResources
Svc/TlmChan
Svc/TlmPacketizer
Svc/Version
Svc/WatchDog
run: |
fprime-util format --check --dirs $CHECKED_DIRS
shell: bash