Regenerate framework models #915
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: Regenerate framework models | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "30 2 * * *" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/mad_regenerate-models.yml" | |
- ".github/actions/fetch-codeql/action.yml" | |
permissions: | |
contents: read | |
jobs: | |
regenerate-models: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# placeholder required for each axis, excluded below, replaced by the actual combinations (see include) | |
slug: ["placeholder"] | |
ref: ["placeholder"] | |
include: | |
- slug: "apache/commons-io" | |
ref: "13258ce2d07aa0e764bbaa8020af4dcd3a02a620" | |
exclude: | |
- slug: "placeholder" | |
ref: "placeholder" | |
steps: | |
- name: Clone self (github/codeql) | |
uses: actions/checkout@v4 | |
- name: Setup CodeQL binaries | |
uses: ./.github/actions/fetch-codeql | |
- name: Clone repositories | |
uses: actions/checkout@v4 | |
with: | |
path: repos/${{ matrix.ref }} | |
ref: ${{ matrix.ref }} | |
repository: ${{ matrix.slug }} | |
- name: Build database | |
env: | |
SLUG: ${{ matrix.slug }} | |
REF: ${{ matrix.ref }} | |
run: | | |
mkdir dbs | |
cd repos/${REF} | |
SHORTNAME=${SLUG//[^a-zA-Z0-9_]/} | |
codeql database create --language=java ../../dbs/${SHORTNAME} | |
- name: Regenerate models in-place | |
env: | |
SLUG: ${{ matrix.slug }} | |
run: | | |
SHORTNAME=${SLUG//[^a-zA-Z0-9_]/} | |
java/ql/src/utils/modelgenerator/RegenerateModels.py "${SLUG}" dbs/${SHORTNAME} | |
- name: Stage changes | |
run: | | |
find java -name "*.model.yml" -print0 | xargs -0 git add | |
git status | |
git diff --cached > models.patch | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: patch | |
path: models.patch | |
retention-days: 7 |