Skip to content

Commit

Permalink
Test new img
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi Petrov committed Nov 27, 2024
1 parent ce7d605 commit b6d76dc
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,18 @@ jobs:
disk-root: "D:" # This is also the checkout directory. Total size 12GB.
continue-on-error: true

- name: Install deps
if: matrix.os == 'linux' && inputs.job_type != 'build-python-wheels'
run: |
yum update -y
yum install -y zip flex bison krb5-devel cyrus-sasl-devel openssl-devel \
unzip tar epel-release jq wget libcurl-devel python3 \
python3-devel python3-pip perl-IPC-Cmd
yum install -y mono-complete
yum clean all
- name: Extra envs
# This has to come after msvc-dev-cmd to overwrite the bad VCPKG_ROOT it sets
run: |
Expand Down Expand Up @@ -268,7 +280,7 @@ jobs:
${{fromJSON(inputs.matrix)}}
name: ${{matrix.type}}${{matrix.python_deps_id}}
runs-on: ${{matrix.distro}}
container: ${{matrix.os == 'linux' && needs.compile.outputs.manylinux_image || null}}
container: ${{matrix.os == 'linux' && matrix.container || null}}
defaults:
run: {shell: bash}
services: ${{matrix.test_services}}
Expand Down

0 comments on commit b6d76dc

Please sign in to comment.