From f7d1b236660bd5f57cad1889e950498346d8a0a3 Mon Sep 17 00:00:00 2001 From: "Lucas, John P" Date: Wed, 12 Jun 2024 22:14:48 -0400 Subject: [PATCH] [nasa/nos3#216] First attempt at build workflow; --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..ad525424 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,22 @@ +name: Build + +on: + push: + branches: [ main, dev ] + pull_request: + branches: [ main, dev ] + +jobs: + fsw: + # Container setup + runs-on: ubuntu-latest + container: + image: ivvitc/nos3-64:dev + steps: + - uses: actions/checkout@v2 + - name: Update + run: sudo apt-get update + - name: Install dependencies + run: sudo apt-get install -y python3 + - name: fsw + run: make config fsw