Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI check on FlightExamples UTs #4

Open
wants to merge 4 commits into
base: devel
Choose a base branch
from
Open
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
37 changes: 37 additions & 0 deletions .github/workflows/ut-flight-examples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: FlightExamples UTs

on:
push:
branches: [ devel, release/** ]
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:
build:
name: ""
runs-on: ubuntu-latest
steps:

- name: "Checkout Examples repo"
uses: actions/checkout@v4

- name: "Overlay nasa/fprime@devel"
uses: actions/checkout@v4
with:
repository: nasa/fprime
submodules: true
path: ./FlightExamples/lib/fprime

- name: "Build & UTs"
uses: fprime-community/project-builder@main
with:
run_unit_tests: true
build_location: ./FlightExamples
fprime_location: ./FlightExamples/lib/fprime