[nasa/nos3#403] CI and Repo Cleanup #182
Workflow file for this run
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: | |
submodules: recursive | |
- name: Update | |
run: apt-get update | |
- name: Install dependencies | |
run: apt-get install -y python3 docker docker.io | |
- name: prep | |
run: make prep | |
- name: build directory | |
run: mkdir ./fsw/build | |
- name: config and build-fsw | |
run: make config build-fsw | |
sim: | |
runs-on: ubuntu-latest | |
container: | |
image: ivvitc/nos3-64:20241010 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Update | |
run: apt-get update | |
- name: Install dependencies | |
run: apt-get install -y python3 docker docker.io | |
- name: prep | |
run: make prep | |
- name: build directory | |
run: mkdir ./sims/build | |
- name: config and build-sim | |
run: make config build-sim |