We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ece1ef1 commit 59b83eaCopy full SHA for 59b83ea
.github/scripts/matrices.py
@@ -71,11 +71,7 @@ def __init__(
71
t_linux_arm = Target("ubuntu-24.04-arm", "aarch64-unknown-linux-gnu", "linux-aarch64")
72
t_macos = Target("macos-latest", "aarch64-apple-darwin", "macosx-aarch64")
73
t_windows = Target("windows-latest", "x86_64-pc-windows-msvc", "windows-amd64")
74
-targets = (
75
- [t_linux_x86, t_linux_arm, t_windows]
76
- if is_pr
77
- else [t_linux_x86, t_linux_arm, t_macos, t_windows]
78
-)
+targets = [t_linux_arm] if is_pr else [t_linux_x86, t_linux_arm, t_macos, t_windows]
79
80
config = [
81
Case(
@@ -94,13 +90,13 @@ def __init__(
94
90
name="integration / issue-repros",
95
91
filter="package(=forge) & test(/\\bissue/)",
96
92
n_partitions=2,
97
- pr_cross_platform=False,
93
+ pr_cross_platform=True,
98
),
99
100
name="integration / external",
101
filter="package(=forge) & test(/\\bext_integration/)",
102
103
104
105
]
106
0 commit comments