Skip to content

Updated configs to run two spacecraft, and modified the launch and CO… #14

Updated configs to run two spacecraft, and modified the launch and CO…

Updated configs to run two spacecraft, and modified the launch and CO… #14

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
fsw:
runs-on: ubuntu-latest
container:
image: ivvitc/nos3-64:dev
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: config
run: make config
- name: build directory
run: mkdir ./fsw/build
- name: build
run: make build-fsw
sim:
runs-on: ubuntu-latest
container:
image: ivvitc/nos3-64:dev
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: config
run: make config
- name: build directory
run: mkdir ./sims/build
- name: build
run: make build-sim