Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update timeout of AzureML tests and add explicit runner in Ubuntu 24.04 #2190

Merged
merged 2 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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