@@ -17,15 +17,17 @@ jobs:
17
17
strategy :
18
18
matrix :
19
19
env-file : [
20
- [ci/deps/azure-37-minimum_versions.yaml, "not slow and not network and not clipboard"],
21
- [ci/deps/azure-37.yaml, "not slow and not network and not clipboard"],
22
- [ci/deps/azure-37-locale_slow.yaml, "slow"]
20
+ [ci/deps/azure-37-minimum_versions.yaml, "not slow and not network and not clipboard", "" ],
21
+ [ci/deps/azure-37.yaml, "not slow and not network and not clipboard", "" ],
22
+ [ci/deps/azure-37-locale_slow.yaml, "slow", "language-pack-it xsel" ]
23
23
]
24
24
fail-fast : true
25
25
env :
26
26
COVERAGE : true
27
27
PYTEST_WORKERS : " auto"
28
+ ENV_FILE : ${{ matrix.env-file[0] }}
28
29
PATTERN : ${{ matrix.env-file[1] }}
30
+ EXTRA_APT : ${{ matrix.env-file[2] }}
29
31
30
32
31
33
steps :
@@ -39,13 +41,16 @@ jobs:
39
41
with :
40
42
path : ~/conda_pkgs_dir
41
43
key : ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
42
- hashFiles('${{ matrix.env-file[0] }}') }}
44
+ hashFiles('${{ env.ENV_FILE }}') }}
45
+
46
+ - name : Extra installs
47
+ run : sudo apt-get update && sudo apt-get install -y libc6-dev-i386 ${{ env.EXTRA_APT }}
43
48
44
49
- uses : conda-incubator/setup-miniconda@v2
45
50
with :
46
51
activate-environment : pandas-dev
47
52
channel-priority : flexible
48
- environment-file : ${{ matrix. env-file[0] }}
53
+ environment-file : ${{ env.ENV_FILE }}
49
54
use-only-tar-bz2 : true
50
55
51
56
- name : Build Pandas
0 commit comments