Skip to content

Commit

Permalink
Add Validate Templates (#2387)
Browse files Browse the repository at this point in the history
 * Update CI to be 3 distinct steps and build each step.
  • Loading branch information
rlcheng committed Oct 28, 2024
1 parent 7587794 commit 985088c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/validate_templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,30 @@ jobs:
submodules: true
path: ${{ inputs.fprime_location }}

- name: "Test bootstrap"
- name: "Test Bootstrap and build"
run: |
pip install fprime-bootstrap
sudo apt-get install expect
mkdir test_dev
cd test_dev
expect ../.github/workflows/bootstrap.exp
- name: "Activate Venv and Generate"
run: |
cd test_dev/MyProject
cd MyProject
. fprime-venv/bin/activate
fprime-util generate
fprime-util build
- name: "Test Deployment and build"
run: |
cd test_dev/MyProject
. fprime-venv/bin/activate
expect ../../.github/workflows/deployment.exp
cd MyDeployment
fprime-util build
- name: "Test Component and build"
run: |
cd test_dev/MyProject
. fprime-venv/bin/activate
expect ../../.github/workflows/component.exp
cd MyComponent
fprime-util build

0 comments on commit 985088c

Please sign in to comment.