Skip to content

Commit

Permalink
[#216] Added sim job to build workflow;
Browse files Browse the repository at this point in the history
  • Loading branch information
jlucas9 committed Jun 13, 2024
1 parent f3354ea commit 2590cd2
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:

jobs:
fsw:
# Container setup
runs-on: ubuntu-latest
container:
image: ivvitc/nos3-64:dev
Expand All @@ -26,3 +25,24 @@ jobs:
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

0 comments on commit 2590cd2

Please sign in to comment.