Bump pillow from 12.1.1 to 12.2.0 #48
This file contains hidden or 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: Track area demand in readme | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| jobs: | |
| evaluate: | |
| name: Run synthesis and upload plot | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| - name: oss-cad-suite | |
| uses: YosysHQ/setup-oss-cad-suite@v4 | |
| with: | |
| version: '2025-07-30' | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' | |
| cache: 'pip' | |
| - name: pip packages | |
| run: pip install -r requirements.txt | |
| - name: Actions checkout | |
| uses: actions/checkout@v5 | |
| - name: fusesoc library | |
| run: | | |
| fusesoc library add fazyrv . | |
| fusesoc library add fsoc . | |
| - name: Run implementation | |
| run: make track.sizes COMMIT=$(git rev-parse --short "$GITHUB_SHA") | |
| - name: Plot artifact | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: area_plot | |
| path: './doc/area*' | |
| commit: | |
| name: Commit updates | |
| runs-on: ubuntu-latest | |
| needs: evaluate | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| - uses: actions/download-artifact@v8 | |
| - name: Copy to docs | |
| run: | | |
| cp area.svg doc/area.svg | |
| cp area.txt doc/area.txt | |
| - uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: 'Automated area tracking' | |
| file_pattern: 'doc/area*' |