[nasa/nos3#348] FSW unit tests in CI #159
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
jobs: | |
fsw: | |
runs-on: ubuntu-latest | |
container: | |
image: ivvitc/nos3-64:20241010 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
submodules: recursive | |
- name: config | |
run: make config | |
- name: build directory | |
run: mkdir ./fsw/build | |
- name: build | |
run: make build-test | |
- name: test | |
run: make test-fsw | |
sim: | |
runs-on: ubuntu-latest | |
container: | |
image: ivvitc/nos3-64:20241010 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
submodules: recursive | |
- name: config | |
run: make config | |
- name: build directory | |
run: mkdir ./sims/build | |
- name: build | |
run: make build-sim |