Skip to content

Commit

Permalink
ci: avoid matrix builds
Browse files Browse the repository at this point in the history
Just install all required pythons and let pytest-xdist handle parallelization by itself.
  • Loading branch information
yajo committed Nov 9, 2023
1 parent fea04c3 commit 77c0cb2
Showing 1 changed file with 8 additions and 30 deletions.
38 changes: 8 additions & 30 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,51 +9,29 @@ on:

jobs:
test:
runs-on: ${{matrix.machine}}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
include:
- odoo-version: 11.0
python-version: 3.6
machine: ubuntu-20.04
- odoo-version: 12.0
python-version: 3.6
machine: ubuntu-20.04
- odoo-version: 13.0
python-version: 3.8
machine: ubuntu-22.04
- odoo-version: 14.0
python-version: 3.8
machine: ubuntu-22.04
- odoo-version: 15.0
python-version: 3.8
machine: ubuntu-22.04
- odoo-version: 16.0
python-version: "3.10"
machine: ubuntu-22.04
- odoo-version: 17.0
python-version: "3.10"
machine: ubuntu-22.04
steps:
# Prepare environment
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry

# Install specific alternate python versions required by hooks
- name: Install python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
python-version: |
3.6
3.7
3.8
3.10
3.11
3.12
# Let tests issue git commits
- run: git config --global user.name CI
- run: git config --global user.email CI@GITHUB

# Run all tests
- run: poetry install
- run: poetry run pytest --color yes
env:
SELECTED_ODOO_VERSIONS: ${{ matrix.odoo-version }}

0 comments on commit 77c0cb2

Please sign in to comment.