@@ -22,10 +22,11 @@ defaults:
22
22
23
23
jobs :
24
24
ubuntu :
25
- runs-on : ubuntu-22.04
25
+ runs-on : ${{ matrix.platform }}
26
26
timeout-minutes : 90
27
27
strategy :
28
28
matrix :
29
+ platform : [ubuntu-22.04, ubuntu-24.04-arm]
29
30
env_file : [actions-39.yaml, actions-310.yaml, actions-311.yaml, actions-312.yaml]
30
31
# Prevent the include jobs from overriding other jobs
31
32
pattern : [""]
35
36
env_file : actions-311-downstream_compat.yaml
36
37
pattern : " not slow and not network and not single_cpu"
37
38
pytest_target : " pandas/tests/test_downstream.py"
39
+ platform : ubuntu-22.04
38
40
- name : " Minimum Versions"
39
41
env_file : actions-39-minimum_versions.yaml
40
42
pattern : " not slow and not network and not single_cpu"
43
+ platform : ubuntu-22.04
41
44
- name : " Locale: it_IT"
42
45
env_file : actions-311.yaml
43
46
pattern : " not slow and not network and not single_cpu"
48
51
# Also install it_IT (its encoding is ISO8859-1) but do not activate it.
49
52
# It will be temporarily activated during tests with locale.setlocale
50
53
extra_loc : " it_IT"
54
+ platform : ubuntu-22.04
51
55
- name : " Locale: zh_CN"
52
56
env_file : actions-311.yaml
53
57
pattern : " not slow and not network and not single_cpu"
@@ -58,57 +62,70 @@ jobs:
58
62
# Also install zh_CN (its encoding is gb2312) but do not activate it.
59
63
# It will be temporarily activated during tests with locale.setlocale
60
64
extra_loc : " zh_CN"
65
+ platform : ubuntu-22.04
61
66
- name : " Copy-on-Write 3.9"
62
67
env_file : actions-39.yaml
63
68
pattern : " not slow and not network and not single_cpu"
64
69
pandas_copy_on_write : " 1"
70
+ platform : ubuntu-22.04
65
71
- name : " Copy-on-Write 3.10"
66
72
env_file : actions-310.yaml
67
73
pattern : " not slow and not network and not single_cpu"
68
74
pandas_copy_on_write : " 1"
75
+ platform : ubuntu-22.04
69
76
- name : " Copy-on-Write 3.11"
70
77
env_file : actions-311.yaml
71
78
pattern : " not slow and not network and not single_cpu"
72
79
pandas_copy_on_write : " 1"
80
+ platform : ubuntu-22.04
73
81
- name : " Copy-on-Write 3.12"
74
82
env_file : actions-312.yaml
75
83
pattern : " not slow and not network and not single_cpu"
76
84
pandas_copy_on_write : " 1"
85
+ platform : ubuntu-22.04
77
86
- name : " Copy-on-Write 3.11 (warnings)"
78
87
env_file : actions-311.yaml
79
88
pattern : " not slow and not network and not single_cpu"
80
89
pandas_copy_on_write : " warn"
90
+ platform : ubuntu-22.04
81
91
- name : " Copy-on-Write 3.10 (warnings)"
82
92
env_file : actions-310.yaml
83
93
pattern : " not slow and not network and not single_cpu"
84
94
pandas_copy_on_write : " warn"
95
+ platform : ubuntu-22.04
85
96
- name : " Copy-on-Write 3.9 (warnings)"
86
97
env_file : actions-39.yaml
87
98
pattern : " not slow and not network and not single_cpu"
88
99
pandas_copy_on_write : " warn"
100
+ platform : ubuntu-22.04
89
101
- name : " Future infer strings"
90
102
env_file : actions-312.yaml
91
103
pandas_future_infer_string : " 1"
92
104
pandas_copy_on_write : " 1"
105
+ platform : ubuntu-22.04
93
106
- name : " Future infer strings (without pyarrow)"
94
107
env_file : actions-311.yaml
95
108
pandas_future_infer_string : " 1"
96
109
pandas_copy_on_write : " 1"
110
+ platform : ubuntu-22.04
97
111
- name : " Pypy"
98
112
env_file : actions-pypy-39.yaml
99
113
pattern : " not slow and not network and not single_cpu"
100
114
test_args : " --max-worker-restart 0"
115
+ platform : ubuntu-22.04
101
116
- name : " Numpy Dev"
102
117
env_file : actions-311-numpydev.yaml
103
118
pattern : " not slow and not network and not single_cpu"
104
119
test_args : " -W error::DeprecationWarning -W error::FutureWarning"
120
+ platform : ubuntu-22.04
105
121
- name : " Pyarrow Nightly"
106
122
env_file : actions-311-pyarrownightly.yaml
107
123
pattern : " not slow and not network and not single_cpu"
108
124
pandas_future_infer_string : " 1"
109
125
pandas_copy_on_write : " 1"
126
+ platform : ubuntu-22.04
110
127
fail-fast : false
111
- name : ${{ matrix.name || format('ubuntu-latest {0}', matrix.env_file) }}
128
+ name : ${{ matrix.name || format('ubuntu-latest {0}', matrix.env_file) }}-${{ matrix.platform }}
112
129
env :
113
130
PATTERN : ${{ matrix.pattern }}
114
131
LANG : ${{ matrix.lang || 'C.UTF-8' }}
@@ -124,7 +141,7 @@ jobs:
124
141
REMOVE_PYARROW : ${{ matrix.name == 'Future infer strings (without pyarrow)' && '1' || '0' }}
125
142
concurrency :
126
143
# https://github.community/t/concurrecy-not-work-for-push/183068/7
127
- group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}-${{ matrix.pandas_copy_on_write || '' }}-${{ matrix.pandas_future_infer_string }}
144
+ group : ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.pattern }}-${{ matrix.extra_apt || '' }}-${{ matrix.pandas_copy_on_write || '' }}-${{ matrix.pandas_future_infer_string }}-${{ matrix.platform }}
128
145
cancel-in-progress : true
129
146
130
147
services :
0 commit comments