Skip to content

Commit

Permalink
Fix the rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Nov 11, 2024
1 parent 790d3df commit d13dc6a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -183,5 +183,10 @@
matchDepNames: ['python'],
groupName: 'Python',
},
/** Ignore .github/workflows/rebuild-*.yaml */
{
matchFileNames: ['.github/workflows/rebuild.yaml'],
enabled: false,
},
],
}
14 changes: 9 additions & 5 deletions .github/workflows/rebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ jobs:
strategy:
fail-fast: false
matrix:
branch:
- '3.28'
- '3.29'
- '3.30'
include:
- branch: '3.28'
python-version: '3.11'
- branch: '3.29'
python-version: '3.11'
- branch: '3.30'
python-version: '3.11'

steps:
- run: docker system prune --all --force
- uses: actions/checkout@v4
Expand Down Expand Up @@ -57,7 +61,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.13'
python-version: ${{ matrix.python-version }}
- run: python3 -m pip install --requirement=ci/requirements.txt

- run: make build
Expand Down

0 comments on commit d13dc6a

Please sign in to comment.