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

Use a Single Python Version Definition [Rebase & FF] #380

Merged
merged 2 commits into from
Oct 24, 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
19 changes: 19 additions & 0 deletions .sync/Files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,14 @@ group:
repos: |
microsoft/mu_feature_mm_supv

# Containers - Dockerfiles
- files:
- source: .sync/containers/Ubuntu-22/Dockerfile
dest: Containers/Ubuntu-22/Dockerfile
template: true
repos: |
microsoft/mu_devops

# dependabot - Track GitHub Actions and PIP Modules
- files:
- source: .sync/dependabot/actions-pip.yml
Expand Down Expand Up @@ -185,6 +193,14 @@ group:
microsoft/mu_tiano_platforms
microsoft/mu_tiano_plus

# GitHub Actions - In the Local Repo
- files:
- source: .sync/actions/submodule-release-updater-action.yml
dest: .github/actions/submodule-release-updater/action.yml
template: true
repos: |
microsoft/mu_devops

# GitHub Templates - Contributing
- files:
- source: .sync/github_templates/contributing/CONTRIBUTING.md
Expand Down Expand Up @@ -671,6 +687,9 @@ group:
- source: .sync/azure_pipelines/RustSetupSteps.yml
dest: Steps/RustSetupSteps.yml
template: true
- source: .sync/azure_pipelines/SetupPythonPreReqs.yml
dest: Steps/SetupPythonPreReqs.yml
template: true
repos: |
microsoft/mu_devops

Expand Down
5 changes: 4 additions & 1 deletion .sync/Version.njk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#}

{# The git ref value that files dependent on this repo will use. #}
{% set mu_devops = "v12.0.2" %}
{% set mu_devops = "v12.2.0" %}

{# The latest Project Mu release branch value. #}
{% set latest_mu_release_branch = "release/202405" %}
Expand All @@ -39,6 +39,9 @@
{# The version of the ubuntu-22-build container to use. #}
{% set linux_build_container = "ghcr.io/microsoft/mu_devops/ubuntu-22-build:d1e4ff1" %}

{# The Python version to use. #}
{% set python_version = "3.12" %}

{# The Rust toolchain version to use. #}
{% set rust_toolchain = "1.80.0" %}

Expand Down
Loading