Update test matrix: Linux to Ubuntu 24.04 + SQL Server 2025#1609
Merged
Conversation
- Upgrade Linux job from ubuntu-22.04 to ubuntu-24.04 - Switch SQL Server Docker image from 2022-latest to 2025-latest (now GA) - Update MergeCoverage job to ubuntu-24.04
The ODBC install step only added /opt/mssql-tools18/bin to ~/.bash_profile and ~/.bashrc, but Azure Pipelines script steps run non-interactive bash that doesn't source those files. This caused setup_dbs.py to fail with 'FileNotFoundError: bcp' because bcp wasn't on PATH. Using ##vso[task.prependpath] persists the PATH across all subsequent steps.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #1609 +/- ##
==========================================
+ Coverage 85.62% 85.77% +0.15%
==========================================
Files 23 23
Lines 7233 7212 -21
==========================================
- Hits 6193 6186 -7
+ Misses 1040 1026 -14 🚀 New features to boost your workflow:
|
David-Engel
approved these changes
May 5, 2026
This was referenced May 15, 2026
This was referenced May 22, 2026
This was referenced May 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the CI pipeline configuration to use newer versions of both the Ubuntu runner and the SQL Server Docker image. These changes help keep the build environment up-to-date and ensure compatibility with the latest software versions.
Environment upgrades:
ubuntu-22.04toubuntu-24.04in all relevant jobs inazure-pipelines.yml.Dependency updates:
mcr.microsoft.com/mssql/server:2022-latesttomcr.microsoft.com/mssql/server:2025-latestin the pipeline setup script inazure-pipelines.yml.