Skip to content

Commit 89fcec2

Browse files
authored
Merge branch 'master' into fix-vecmat-win-failure
2 parents 4c0ce9b + 463af22 commit 89fcec2

File tree

8 files changed

+22
-1
lines changed

8 files changed

+22
-1
lines changed

.github/workflows/build-sphinx.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
name: Build and Deploy Docs
2727

2828
runs-on: ubuntu-22.04
29+
timeout-minutes: 60
2930

3031
permissions:
3132
# Needed to cancel any previous runs that are not completed for a given workflow
@@ -244,6 +245,7 @@ jobs:
244245
pull-requests: write
245246

246247
runs-on: ubuntu-latest
248+
timeout-minutes: 10
247249

248250
steps:
249251
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

.github/workflows/check-onemath.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ jobs:
2929
actions: write
3030

3131
runs-on: 'ubuntu-latest'
32+
timeout-minutes: 5
3233

3334
steps:
3435
- name: Cancel Previous Runs
@@ -69,6 +70,7 @@ jobs:
6970
os: [ubuntu-22.04] # windows-2022 - no DFT support for Windows in oneMKL
7071

7172
runs-on: ${{ matrix.os }}
73+
timeout-minutes: 60
7274

7375
defaults:
7476
run:
@@ -157,6 +159,7 @@ jobs:
157159
os: [ubuntu-22.04] # windows-2022 - no DFT support for Windows in oneMKL
158160

159161
runs-on: ${{ matrix.os }}
162+
timeout-minutes: 60
160163

161164
defaults:
162165
run:

.github/workflows/conda-package.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
actions: write
3838

3939
runs-on: ${{ matrix.os }}
40+
timeout-minutes: 60
4041

4142
defaults:
4243
run:
@@ -118,6 +119,7 @@ jobs:
118119
needs: build
119120

120121
runs-on: ${{ matrix.os }}
122+
timeout-minutes: 100
121123

122124
defaults:
123125
run:
@@ -245,6 +247,7 @@ jobs:
245247
needs: build
246248

247249
runs-on: ${{ matrix.os }}
250+
timeout-minutes: 120
248251

249252
defaults:
250253
run:
@@ -406,6 +409,7 @@ jobs:
406409
os: [ubuntu-22.04, windows-2022]
407410

408411
runs-on: ${{ matrix.os }}
412+
timeout-minutes: 10
409413

410414
defaults:
411415
run:
@@ -487,6 +491,7 @@ jobs:
487491
os: [ubuntu-22.04]
488492

489493
runs-on: ${{ matrix.os }}
494+
timeout-minutes: 15
490495

491496
defaults:
492497
run:
@@ -649,6 +654,7 @@ jobs:
649654
needs: [upload]
650655

651656
runs-on: 'ubuntu-latest'
657+
timeout-minutes: 10
652658

653659
defaults:
654660
run:

.github/workflows/cron-run-tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
if: github.event.repository.fork == false
2727

2828
runs-on: ${{ matrix.runner }}
29+
timeout-minutes: 60
2930

3031
defaults:
3132
run:

.github/workflows/generate_coverage.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ permissions: read-all
99
jobs:
1010
generate-coverage:
1111
name: Generate coverage and push to Coveralls.io
12+
1213
runs-on: ubuntu-latest
14+
timeout-minutes: 120
1315

1416
permissions:
1517
# Needed to cancel any previous runs that are not completed for a given workflow
@@ -154,6 +156,7 @@ jobs:
154156
needs: generate-coverage
155157

156158
runs-on: ubuntu-latest
159+
timeout-minutes: 10
157160

158161
container: python:3-slim
159162

.github/workflows/openssf-scorecard.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
analysis:
2323
name: Scorecard analysis
2424
runs-on: ubuntu-latest
25+
timeout-minutes: 10
2526
permissions:
2627
# Needed to upload the results to code-scanning dashboard.
2728
security-events: write

.github/workflows/pre-commit.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: pre-commit
1+
name: Run pre-commit
22

33
on:
44
pull_request:
@@ -9,7 +9,11 @@ permissions: read-all
99

1010
jobs:
1111
pre-commit:
12+
name: Check
13+
1214
runs-on: ubuntu-22.04
15+
timeout-minutes: 10
16+
1317
steps:
1418
- name: Set up clang-format
1519
run: |

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
* Added several new `pre-commit` rules, including protection against direct commits to master/maintenance branches [#2500](https://github.com/IntelPython/dpnp/pull/2500)
1313
* Added implementation of `dpnp.ndarray.view` method [#2520](https://github.com/IntelPython/dpnp/pull/2520)
1414
* Added a new backend routine `syrk` from oneMKL to perform symmetric rank-k update which is used for a specialized matrix multiplication where the result is a symmetric matrix [2509](https://github.com/IntelPython/dpnp/pull/2509)
15+
* Added `timeout-minutes` property to GitHub jobs [#2526](https://github.com/IntelPython/dpnp/pull/2526)
1516

1617
### Changed
1718

0 commit comments

Comments
 (0)