Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/lobster_traceability_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:

jobs:
lobster-traceability-report:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write # required to upload release assets
pull-requests: write # required to comment on PRs
Expand Down Expand Up @@ -55,11 +55,11 @@ jobs:
run: |
mkdir -p lobster_reports

# Find and copy lobster HTML reports
find -L bazel-bin -path "*/traceability/*" -name "safety_software_unit*_report.html" -exec cp {} lobster_reports/ \;
# Find and copy lobster HTML reports (from safety_software_unit and safety_analysis targets)
find -L bazel-bin \( -name "safety_software_*_report.html" -o -name "*_safety_analysis_report.html" \) -exec cp {} lobster_reports/ \;

# Find and copy lobster JSON reports
find -L bazel-bin -path "*/traceability/*" -name "safety_software_unit*_report.json" -exec cp {} lobster_reports/ \;
find -L bazel-bin \( -name "safety_software_*_report.json" -o -name "*_safety_analysis_report.json" \) -exec cp {} lobster_reports/ \;

# List collected reports
echo "Collected Lobster reports:"
Expand Down
2 changes: 1 addition & 1 deletion third_party/traceability/doc/sample_library/unit_2/bar.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <cstdint>
#include <memory>

// dummy changes to verify lobster workflow on pr
namespace unit_2
{

Expand Down
Loading