Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 53
CHORE: Update test matrix - upgrade Ubuntu 22.04 to 24.04, add Python 3.14 to macOS#591
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
395de4ed481253709c47e37e9dbc32c5c84cf95819bcff228767fe76cf50dd6d3790edaa9ae9ab11ebceFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -469,16 +469,18 @@ jobs: | ||
| SQL2022: | ||
| sqlServerImage: 'mcr.microsoft.com/mssql/server:2022-latest' | ||
| sqlVersion: 'SQL2022' | ||
| pythonVersion: '3.13' | ||
gargsaumya marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| SQL2025: | ||
| sqlServerImage: 'mcr.microsoft.com/mssql/server:2025-latest' | ||
| sqlVersion: 'SQL2025' | ||
| pythonVersion: '3.14' | ||
| steps: | ||
| - task: UsePythonVersion@0 | ||
| inputs: | ||
| versionSpec: '3.13' | ||
| versionSpec: '$(pythonVersion)' | ||
| addToPath: true | ||
| displayName: 'Use Python 3.13 on macOS' | ||
| displayName: 'Use Python $(pythonVersion) on macOS' | ||
gargsaumya marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| - script: | | ||
| brew update | ||
| @@ -640,18 +642,18 @@ jobs: | ||
| strategy: | ||
| matrix: | ||
| Ubuntu: | ||
| dockerImage: 'ubuntu:22.04' | ||
| dockerImage: 'ubuntu:24.04' | ||
| distroName: 'Ubuntu' | ||
| sqlServerImage: 'mcr.microsoft.com/mssql/server:2022-latest' | ||
| useAzureSQL: 'false' | ||
| Ubuntu_SQL2025: | ||
| dockerImage: 'ubuntu:22.04' | ||
| dockerImage: 'ubuntu:24.04' | ||
| distroName: 'Ubuntu-SQL2025' | ||
| sqlServerImage: 'mcr.microsoft.com/mssql/server:2025-latest' | ||
| useAzureSQL: 'false' | ||
| ${{ if ne(variables['AZURE_CONNECTION_STRING'], '') }}: | ||
| Ubuntu_AzureSQL: | ||
| dockerImage: 'ubuntu:22.04' | ||
| dockerImage: 'ubuntu:24.04' | ||
| distroName: 'Ubuntu-AzureSQL' | ||
| sqlServerImage: '' | ||
| useAzureSQL: 'true' | ||
| @@ -741,8 +743,8 @@ jobs: | ||
| export DEBIAN_FRONTEND=noninteractive | ||
| # Download the package to configure the Microsoft repo | ||
| if [ '$(distroName)' = 'Ubuntu' ]; then | ||
| curl -sSL -O https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb | ||
| if [[ '$(distroName)' =~ ^Ubuntu ]]; then | ||
| curl -sSL -O https://packages.microsoft.com/config/ubuntu/24.04/packages-microsoft-prod.deb | ||
| else | ||
| # Debian 12 | ||
gargsaumya marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| curl -sSL -O https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb | ||
| @@ -898,7 +900,7 @@ jobs: | ||
| # Add Microsoft repository | ||
| curl -sSL https://packages.microsoft.com/keys/microsoft.asc | apt-key add - | ||
| curl -sSL https://packages.microsoft.com/config/ubuntu/22.04/prod.list > /etc/apt/sources.list.d/mssql-release.list | ||
| curl -sSL https://packages.microsoft.com/config/ubuntu/24.04/prod.list > /etc/apt/sources.list.d/mssql-release.list | ||
| # Update package lists | ||
| apt-get update -qq | ||
| @@ -1065,7 +1067,7 @@ jobs: | ||
| export DEBIAN_FRONTEND=noninteractive | ||
| # Download the package to configure the Microsoft repo | ||
| if [ '$(distroName)' = 'Ubuntu' ]; then | ||
| if [[ '$(distroName)' =~ ^Ubuntu ]]; then | ||
| curl -sSL -O https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb | ||
| else | ||
| # Debian 12 | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.