Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CLIENT-2970] CI/CD: Use manylinux wheel instead of a local build for valgrind workflow #624

Merged
merged 2 commits into from
May 31, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ on:
default: false

jobs:
build-manylinux-wheels:
uses: ./.github/workflows/build-wheels.yml

valgrind:
needs: build-manylinux-wheels
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
Expand All @@ -27,8 +31,12 @@ jobs:
python-version: '3.8'
architecture: 'x64'

- uses: actions/download-artifact@v4
with:
name: cp38-manylinux_x86_64.build

- name: Install client
run: pip install .
run: pip install ./*.whl

- name: Install test dependencies
run: pip install -r test/requirements.txt
Expand Down
Loading