User/jl/nvm manager #50
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: 'Build entire platform' | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
cfr24: | |
runs-on: self-hosted | |
container: | |
image: docker://ghcr.io/concordia-fsae/containers/ubuntu-noble-lts:v1.0.0 | |
steps: | |
- name: Clean | |
uses: AutoModality/action-clean@1077775f5ef0022fc3a9d6f93377921ea3701fa7 | |
- name: Pull Branch | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
show-progress: 'true' | |
submodules: 'recursive' | |
- name: Execute build for CFR24 | |
run: | | |
scons --platform=cfr24 -j32 --flashable-bootloader | |
cfr25: | |
runs-on: self-hosted | |
container: | |
image: docker://ghcr.io/concordia-fsae/containers/ubuntu-noble-lts:v1.0.0 | |
steps: | |
- name: Clean | |
uses: AutoModality/action-clean@1077775f5ef0022fc3a9d6f93377921ea3701fa7 | |
- name: Pull Branch | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
show-progress: 'true' | |
submodules: 'recursive' | |
- name: Execute build for CFR25 | |
run: | | |
scons --platform=cfr25 -j32 --flashable-bootloader | |
updaters: | |
runs-on: self-hosted | |
container: | |
image: docker://ghcr.io/concordia-fsae/containers/ubuntu-noble-lts:v1.0.0 | |
steps: | |
- name: Clean | |
uses: AutoModality/action-clean@1077775f5ef0022fc3a9d6f93377921ea3701fa7 | |
- name: Pull Branch | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
show-progress: 'true' | |
submodules: 'recursive' | |
- name: Execute build for all bootloader updaters | |
run: | | |
scons --targets=bl:1000,1001,1002,1003,1004,1005,1010,1011 -j32 |