Skip to content

Commit b6d76dc

Browse files
author
Georgi Petrov
committed
Test new img
1 parent ce7d605 commit b6d76dc

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/build_steps.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,18 @@ jobs:
8888
disk-root: "D:" # This is also the checkout directory. Total size 12GB.
8989
continue-on-error: true
9090

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+
91103
- name: Extra envs
92104
# This has to come after msvc-dev-cmd to overwrite the bad VCPKG_ROOT it sets
93105
run: |
@@ -268,7 +280,7 @@ jobs:
268280
${{fromJSON(inputs.matrix)}}
269281
name: ${{matrix.type}}${{matrix.python_deps_id}}
270282
runs-on: ${{matrix.distro}}
271-
container: ${{matrix.os == 'linux' && needs.compile.outputs.manylinux_image || null}}
283+
container: ${{matrix.os == 'linux' && matrix.container || null}}
272284
defaults:
273285
run: {shell: bash}
274286
services: ${{matrix.test_services}}

0 commit comments

Comments
 (0)