Skip to content

Commit

Permalink
Run fewer runs at once.
Browse files Browse the repository at this point in the history
When we get more than this, the URLs we spam complain and fail.  Hopefully only running 13 at once will actually fix this.
  • Loading branch information
luciansmith committed Jun 3, 2024
1 parent bc55b3f commit 39ce9e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fix-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Fix the entries of BioModels and commit to the repository
strategy:
matrix:
job: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
job: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
fail-fast: false
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
run: python -m pip install -r requirements.txt

- name: Fix entries
run: python fix-entries.py --convert-files --validate-sbml --num-jobs 20 --job ${{ matrix.job }}
run: python fix-entries.py --convert-files --validate-sbml --num-jobs 13 --job ${{ matrix.job }}

- name: Setup Git
run: |
Expand Down

0 comments on commit 39ce9e7

Please sign in to comment.