Skip to content

Commit

Permalink
Generate pages results during deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
bobot committed Jul 9, 2024
1 parent bbb9c5b commit ac8866a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/deploy-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,21 @@ jobs:
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Set up the environment
uses: ./.github/actions/setup-poetry-env
#For smtcomp data cache
- uses: actions/cache@v3
id: data-cache
with:
path: data/*.feather
key: data-cache-${{ hashFiles('data/*.json.gz') }}
- name: Cache generation if needed
if: steps.data-cache.outputs.cache-hit != 'true'
run: |
poetry run make cache
# Generate files using smtcomp tool
- name: Files generation
run: |
pip install json-schema-for-humans
poetry run make submission-doc
poetry run make submission-doc generation
###
- name: Setup Pages
id: pages
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,4 @@ schema_doc.min.js
*.feather
tmp/
/web/public/
/web/content/results/*.md
/web/content/results/*.md

0 comments on commit ac8866a

Please sign in to comment.