WIP Github Workflows #22
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: | |
- run: sudo apt-get install git -y | |
- name: Pull Branch | |
uses: actions/checkout@v4 | |
- name: Enter environment | |
run: | | |
cd /__w/firmware/firmware && ls -al | |
- run: git log | |
- name: Execute build for CFR24 | |
run: | | |
scons --platform=cfr24 -j32 |