Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
fix(.github/workflows): temporarily increase timeout (#15251)
Browse files Browse the repository at this point in the history
  • Loading branch information
digama0 committed Jul 11, 2022
1 parent 201d2c6 commit 00dbc7b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/bors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ jobs:
run: |
leanpkg configure
echo "::set-output name=started::true"
lean --json -T100000 --make src | python3 scripts/detect_errors.py
lean --json -T100000 --make src | python3 scripts/detect_errors.py
lean --json -T150000 --make src | python3 scripts/detect_errors.py
lean --json -T150000 --make src | python3 scripts/detect_errors.py
- name: push release to azure
if: always() && github.repository == 'leanprover-community/mathlib' && steps.build.outputs.started == 'true'
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
- name: tests
run: |
set -o pipefail
lean --json -T100000 --make docs archive roadmap test counterexamples | python3 scripts/detect_errors.py
lean --json -T150000 --make docs archive roadmap test counterexamples | python3 scripts/detect_errors.py
- uses: actions/setup-java@v2
if: ${{ ! 1 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ jobs:
run: |
leanpkg configure
echo "::set-output name=started::true"
lean --json -T100000 --make src | python3 scripts/detect_errors.py
lean --json -T100000 --make src | python3 scripts/detect_errors.py
lean --json -T150000 --make src | python3 scripts/detect_errors.py
lean --json -T150000 --make src | python3 scripts/detect_errors.py
- name: push release to azure
if: always() && github.repository == 'leanprover-community/mathlib' && steps.build.outputs.started == 'true'
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- name: tests
run: |
set -o pipefail
lean --json -T100000 --make docs archive roadmap test counterexamples | python3 scripts/detect_errors.py
lean --json -T150000 --make docs archive roadmap test counterexamples | python3 scripts/detect_errors.py
- uses: actions/setup-java@v2
if: ${{ ! 1 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ jobs:
run: |
leanpkg configure
echo "::set-output name=started::true"
lean --json -T100000 --make src | python3 scripts/detect_errors.py
lean --json -T100000 --make src | python3 scripts/detect_errors.py
lean --json -T150000 --make src | python3 scripts/detect_errors.py
lean --json -T150000 --make src | python3 scripts/detect_errors.py

- name: push release to azure
if: always() && github.repository == 'leanprover-community/mathlib' && steps.build.outputs.started == 'true'
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
- name: tests
run: |
set -o pipefail
lean --json -T100000 --make docs archive roadmap test counterexamples | python3 scripts/detect_errors.py
lean --json -T150000 --make docs archive roadmap test counterexamples | python3 scripts/detect_errors.py

- uses: actions/setup-java@v2
if: ${{ ! IS_SELF_HOSTED }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
run: |
leanpkg configure
echo "::set-output name=started::true"
lean --json -T100000 --make src | python3 scripts/detect_errors.py
lean --json -T100000 --make src | python3 scripts/detect_errors.py
lean --json -T150000 --make src | python3 scripts/detect_errors.py
lean --json -T150000 --make src | python3 scripts/detect_errors.py
- name: push release to azure
if: always() && github.repository == 'leanprover-community/mathlib' && steps.build.outputs.started == 'true'
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
- name: tests
run: |
set -o pipefail
lean --json -T100000 --make docs archive roadmap test counterexamples | python3 scripts/detect_errors.py
lean --json -T150000 --make docs archive roadmap test counterexamples | python3 scripts/detect_errors.py
- uses: actions/setup-java@v2
if: ${{ ! 0 }}
Expand Down

0 comments on commit 00dbc7b

Please sign in to comment.