Commands pipeline sorting by priority and time along with early comma… #5345
This file contains hidden or 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 |