Skip to content

Commit

Permalink
Merge pull request #2190 from recommenders-team/miguel/timeout
Browse files Browse the repository at this point in the history
Update timeout of AzureML tests and add explicit runner in Ubuntu 24.04
  • Loading branch information
miguelgfierro authored Nov 18, 2024
2 parents f2abb55 + 2f2cf91 commit 7819b8b
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/azureml-cpu-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ on:

jobs:
get-test-groups:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -63,7 +63,8 @@ jobs:
execute-tests:
needs: get-test-groups
name: ${{ join(matrix.*, ', ') }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 120
permissions:
id-token: write # This is required for requesting the JWT
strategy:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/azureml-gpu-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ on:

jobs:
get-test-groups:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -63,7 +63,8 @@ jobs:
execute-tests:
needs: get-test-groups
name: ${{ join(matrix.*, ', ') }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 120
permissions:
id-token: write # This is required for requesting the JWT
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/azureml-release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
secrets: inherit

create-release:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [unit-test-workflow, cpu-nightly-workflow, gpu-nightly-workflow, spark-nightly-workflow]
steps:
- name: Check out repository code
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/azureml-spark-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ on:

jobs:
get-test-groups:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -62,7 +62,8 @@ jobs:
execute-tests:
needs: get-test-groups
name: ${{ join(matrix.*, ', ') }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 120
permissions:
id-token: write # This is required for requesting the JWT
strategy:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/azureml-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on:

jobs:
get-test-groups:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -52,7 +52,8 @@ jobs:
execute-tests:
needs: get-test-groups
name: ${{ join(matrix.*, ', ') }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 120
permissions:
id-token: write # This is required for requesting the JWT
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sarplus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Test pysarplus with different versions of Python.
# Package pysarplus and upload as GitHub workflow artifact when merged into
# the main branch.
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout repository
Expand Down

0 comments on commit 7819b8b

Please sign in to comment.