Skip to content

Commit 59b83ea

Browse files
committed
tmp
1 parent ece1ef1 commit 59b83ea

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/scripts/matrices.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,7 @@ def __init__(
7171
t_linux_arm = Target("ubuntu-24.04-arm", "aarch64-unknown-linux-gnu", "linux-aarch64")
7272
t_macos = Target("macos-latest", "aarch64-apple-darwin", "macosx-aarch64")
7373
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-
)
74+
targets = [t_linux_arm] if is_pr else [t_linux_x86, t_linux_arm, t_macos, t_windows]
7975

8076
config = [
8177
Case(
@@ -94,13 +90,13 @@ def __init__(
9490
name="integration / issue-repros",
9591
filter="package(=forge) & test(/\\bissue/)",
9692
n_partitions=2,
97-
pr_cross_platform=False,
93+
pr_cross_platform=True,
9894
),
9995
Case(
10096
name="integration / external",
10197
filter="package(=forge) & test(/\\bext_integration/)",
10298
n_partitions=2,
103-
pr_cross_platform=False,
99+
pr_cross_platform=True,
104100
),
105101
]
106102

0 commit comments

Comments
 (0)