Add multilib to dependency installation instructions where required #3233
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: 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 |