File tree 1 file changed +13
-1
lines changed
1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 88
88
disk-root : " D:" # This is also the checkout directory. Total size 12GB.
89
89
continue-on-error : true
90
90
91
+ - name : Install deps
92
+ if : matrix.os == 'linux' && inputs.job_type != 'build-python-wheels'
93
+ run : |
94
+ yum update -y
95
+ yum install -y zip flex bison krb5-devel cyrus-sasl-devel openssl-devel \
96
+ unzip tar epel-release jq wget libcurl-devel python3 \
97
+ python3-devel python3-pip perl-IPC-Cmd
98
+
99
+ yum install -y mono-complete
100
+
101
+ yum clean all
102
+
91
103
- name : Extra envs
92
104
# This has to come after msvc-dev-cmd to overwrite the bad VCPKG_ROOT it sets
93
105
run : |
@@ -268,7 +280,7 @@ jobs:
268
280
${{fromJSON(inputs.matrix)}}
269
281
name : ${{matrix.type}}${{matrix.python_deps_id}}
270
282
runs-on : ${{matrix.distro}}
271
- container : ${{matrix.os == 'linux' && needs.compile.outputs.manylinux_image || null}}
283
+ container : ${{matrix.os == 'linux' && matrix.container || null}}
272
284
defaults :
273
285
run : {shell: bash}
274
286
services : ${{matrix.test_services}}
You can’t perform that action at this time.
0 commit comments