Skip to content

Commit

Permalink
Merge pull request #2599 from camptocamp/fix-rebuild
Browse files Browse the repository at this point in the history
Fix used Python version in rebuild
  • Loading branch information
sbrunner authored Nov 15, 2024
2 parents dd2d11a + 7b5e86c commit da87c82
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/rebuild-115.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
strategy:
fail-fast: false
matrix:
branch:
- '1.15'
include:
- branch: '1.15'
python-version: '3.10'

env:
REDIS_URL: redis://localhost:6379
Expand All @@ -31,7 +32,9 @@ jobs:
patterns: pypi docker
if: github.repository == 'camptocamp/tilecloud-chain'

- run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH}
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python3 -m pip install --user --requirement=ci/requirements.txt

- name: Checks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rebuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
matrix:
include:
- branch: '1.17'
python-version: '3.11'
python-version: '3.10'
- branch: '1.18'
python-version: '3.11'
python-version: '3.10'

env:
REDIS_URL: redis://localhost:6379
Expand Down

0 comments on commit da87c82

Please sign in to comment.