Merged PR 632: CI pipeline Updates

## Summary
*Replace this text with an explanation of what the changes are and how you implemented them. Can this impact any other parts of the codebase that we should keep in mind?*

## Test process
*How have you tested this (if applicable)?*

## Checklist
- [ ] PR is linked to a **work item**
- [ ] **acceptance criteria** of linked ticket are met
- [ ] performed **self-review** of the code
- [ ] written **tests** for any new functionality added with this PR
- [ ] updated the **documentation** if this PR changes or adds functionality
- [ ] written/updated **design docs** if this PR implements new functionality
- [ ] updated the **change log**
- [ ] ran **pre-commit** checks for code style
- [ ] attended to any **TO-DOs** left in the code

Related work items: #2936
This commit is contained in:
Charlie Crane
2025-03-14 14:11:06 +00:00

View File

@@ -15,37 +15,37 @@ parameters:
type: object type: object
default: default:
- job_name: 'UbuntuPython39' - job_name: 'UbuntuPython39'
py: '3.9' py: 'v3.9'
img: 'ubuntu-latest' img: 'ubuntu-latest'
every_time: false every_time: false
publish_coverage: false publish_coverage: false
- job_name: 'UbuntuPython310' - job_name: 'UbuntuPython310'
py: '3.10' py: 'v3.10'
img: 'ubuntu-latest' img: 'ubuntu-latest'
every_time: true every_time: true
publish_coverage: true publish_coverage: true
- job_name: 'UbuntuPython311' - job_name: 'UbuntuPython311'
py: '3.11' py: 'v3.11'
img: 'ubuntu-latest' img: 'ubuntu-latest'
every_time: false every_time: false
publish_coverage: false publish_coverage: false
- job_name: 'WindowsPython39' - job_name: 'WindowsPython39'
py: '3.9' py: 'v3.9'
img: 'windows-latest' img: 'windows-latest'
every_time: false every_time: false
publish_coverage: false publish_coverage: false
- job_name: 'WindowsPython311' - job_name: 'WindowsPython311'
py: '3.11' py: 'v3.11'
img: 'windows-latest' img: 'windows-latest'
every_time: false every_time: false
publish_coverage: false publish_coverage: false
- job_name: 'MacOSPython39' - job_name: 'MacOSPython39'
py: '3.9' py: 'v3.9'
img: 'macOS-latest' img: 'macOS-latest'
every_time: false every_time: false
publish_coverage: false publish_coverage: false
- job_name: 'MacOSPython311' - job_name: 'MacOSPython311'
py: '3.11' py: 'v3.11'
img: 'macOS-latest' img: 'macOS-latest'
every_time: false every_time: false
publish_coverage: false publish_coverage: false