Skip to content

Commit

Permalink
CI debugging, a fix for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
JDBetteridge committed Aug 15, 2024
1 parent ea63163 commit 68ae74f
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
with:
detached: true
limit-access-to-actor: true
timeout-minutes: 20
timeout-minutes: 15

- name: Install system dependencies
shell: bash
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
with:
path: PyOP2

- name: Install PyOP2
- name: Install PyOP2 dependencies
shell: bash
working-directory: PyOP2
run: |
Expand All @@ -85,6 +85,19 @@ jobs:
python -m pip install -U pytest-timeout
python -m pip install .
- name: Install PyOP2 (Python <3.12)
if: ${{ matrix.python-version != '3.12' }}
shell: bash
working-directory: PyOP2
run: python -m pip install .

# Not sure if this is a bug in setuptools or something PyOP2 is doing wrong
- name: Install PyOP2 (Python == 3.12)
if: ${{ matrix.python-version != '3.12' }}
shell: bash
working-directory: PyOP2
run: python setup.py install

- name: Run linting
shell: bash
working-directory: PyOP2
Expand Down

0 comments on commit 68ae74f

Please sign in to comment.