Re-reference clean pull workflow #110
Workflow file for this run
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 --package | |
- name: Archive Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-cfr24 | |
path: platform-artifacts/ | |
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 --package | |
- name: Archive Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-cfr25 | |
path: platform-artifacts/ | |
updaters: | |
runs-on: self-hosted | |
needs: [ cfr24, cfr25 ] | |
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,1030,1031,1032 -j32 --package | |
- name: Archive Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: artifacts-bootloader_updater | |
path: platform-artifacts/ |