Skip to content
Open
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
11 changes: 4 additions & 7 deletions ci-matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,13 +300,10 @@ def generate_crate_build_matrix_entries(
{
"platform": platform,
"arch": arch,
# Use the GitHub runner for Windows, because the Depot one is
# missing a Rust toolchain. On Linux, it's important that the the
# `python-build` runner matches the `crate-build` runner because of
# GLIBC version mismatches.
"runner": find_runner(
runners, platform, arch, True if platform == "windows" else False
),
# Linux distribution jobs execute the uploaded `pythonbuild` binary.
# Select the same runner to avoid requiring a newer glibc than the
# consumer has.
"runner": find_runner(runners, platform, arch, False),
"crate_artifact_name": crate_artifact_name(
platform,
arch,
Expand Down
2 changes: 1 addition & 1 deletion ci-runners.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ macos-latest:
platform: darwin
free: true

depot-windows-2022-8:
namespace-profile-windows-2022-x86-64-16x32:
arch: x86_64
platform: windows
free: false
Expand Down
Loading