-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Georgi Petrov
committed
Nov 27, 2024
1 parent
b6d76dc
commit d6e7f99
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,7 +110,7 @@ jobs: | |
needs: [cibw_docker_image] | ||
runs-on: "ubuntu-22.04" | ||
container: | ||
image: ${{needs.cibw_docker_image.outputs.tag}} | ||
image: quay.io/pypa/manylinux_2_28_x86_64 | ||
services: | ||
mongodb: | ||
image: mongo:4.4 | ||
|
@@ -133,6 +133,17 @@ jobs: | |
uses: SimenB/[email protected] | ||
id: cpu-cores | ||
|
||
- name: Install deps | ||
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 | ||
run: | | ||
. build_tooling/vcpkg_caching.sh # Linux follower needs another call in CIBW | ||
|