WIP Github Workflows #17
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: Builds on push | |
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: Pull Branch | |
uses: actions/checkout@v4 | |
- run: git checkout HEAD^ | |
- name: Enter container | |
run: | | |
ls -al /__w/firmware | |
- name: Execute build for CFR24 | |
run: | | |
scons --platform=cfr24 -j32 |