forked from nasa/fprime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add validate_templates.yml.
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
spawn fprime-bootstrap project | ||
expect "Project name (MyProject):" | ||
send -- "Project" | ||
expect eof |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: validate_templates-actions | ||
run-name: ${{ github.actor }} running Validate Templates CI actions | ||
on: [push] | ||
|
||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: "Checkout F' Repository" | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
path: ${{ inputs.fprime_location }} | ||
#- name: "Fprime Venv and Requirements Install" | ||
# run: | | ||
# python3 -m venv ./fprime-venv | ||
# . ./fprime-venv/bin/activate | ||
# pip3 install -r ${{ inputs.fprime_location }}./requirements.txt | ||
- name: "Test boostrap" | ||
run: | | ||
pip install fprime-bootstrap | ||
expect .github/workflows/bootstrap.exp | ||
shell: bash | ||
# | ||
# fprime-bootstrap project | ||
# cd project | ||
# fprime-util new --deployment | ||
# cd deployment | ||
# fprime-util generate | ||
# fprime-util build |