Skip to content

Merge branch 'main' into jordyn-and-saqib/power-on-test #3150

Merge branch 'main' into jordyn-and-saqib/power-on-test

Merge branch 'main' into jordyn-and-saqib/power-on-test #3150

Workflow file for this run

name: Ground Station Build
on: [push, pull_request]
jobs:
build-linux:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Create binary directory
run: |
mkdir build
- name: Build
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=GS -G"Unix Makefiles"
make
build-windows:
runs-on: windows-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- name: Create binary directory
run: |
mkdir build
- name: Build
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=GS -G"Unix Makefiles"
make