Skip to content

Commit

Permalink
testing ci with matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
santacodes committed Aug 4, 2024
1 parent c8a6b6a commit b293e36
Showing 1 changed file with 32 additions and 47 deletions.
79 changes: 32 additions & 47 deletions .github/workflows/test_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- main
- setuptoolsci

jobs:
style:
Expand Down Expand Up @@ -98,59 +99,43 @@ jobs:
- name: Check if the documentation can be built
run: nox -s docs

generated_project_tests:
needs: [template_test]

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
name:
Generated Project Tests (${{ matrix.os }} / Python ${{ matrix.python-version }})
steps:
- name: Checkout pybamm-cookiecutter
uses: actions/checkout@v4
generated_project_tests:
needs: [style]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
backend: [hatch, setuptools]
vcs: [true, false]

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
name: Generated Project Tests (${{ matrix.os }} / Python ${{ matrix.python-version }} / Backend ${{ matrix.backend }} / VCS ${{ matrix.vcs }})

- name: Install copier and jinja2_time
run: python -m pip install copier jinja2_time
steps:
- name: Checkout pybamm-cookiecutter
uses: actions/checkout@v4

- name: Generate projects with different build backends and vcs
run: |
copier copy . ../pybamm-example-project --trust --defaults
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

copier copy . ../pybamm-with-setuptools --data project_name=pybamm-with-setuptools --data project_slug=pybamm_with_setuptools --data backend=setuptools --trust --defaults
- name: Install copier and jinja2_time
run: python -m pip install copier jinja2_time

copier copy . ../pybamm-with-setuptools-scm --data project_name=pybamm-with-setuptools-scm --data project_slug=pybamm_with_setuptools_scm --data backend=setuptools --data vcs=true --trust --defaults
- name: Generate project
run: |
copier copy . ../pybamm-${{ matrix.backend }}-${{ matrix.vcs }} --data project_name=pybamm-${{ matrix.backend }}-${{ matrix.vcs }} --data project_slug=pybamm_${{ matrix.backend }}_${{ matrix.vcs }} --data backend=${{ matrix.backend }} --data vcs=${{ matrix.vcs }} --trust --defaults
copier copy . ../pybamm-with-hatch-vcs --data project_name=pybamm-with-hatch-vcs --data project_slug=pybamm_with_hatch_vcs --data backend=hatch --data vcs=true --trust --defaults
- name: Set up uv
uses: yezz123/setup-uv@v4
with:
uv-venv: ".venv"

- name: Set up uv
uses: yezz123/setup-uv@v4
with:
uv-venv: ".venv"
- name: Install nox
uses: wntrblm/[email protected]

- name: Install nox
uses: wntrblm/[email protected]

- name: Test the generated project with default hatch build backend and no vcs
working-directory: ../pybamm-example-project
run: nox -s generated-project-tests

- name: Test the generated project with setuptools build backend and no scm
working-directory: ../pybamm-with-setuptools
run: nox -s generated-project-tests

- name: Test the generated project with setuptools build backend and scm
working-directory: ../pybamm-with-setuptools-scm
run: nox -s generated-project-tests

- name: Test the generated project with hatch build backend and vcs
working-directory: ../pybamm-with-hatch-vcs
run: nox -s generated-project-tests
- name: Test the generated project
run: nox -s generated-project-tests --working-directory=../pybamm-${{ matrix.backend }}-${{ matrix.vcs }}

0 comments on commit b293e36

Please sign in to comment.