Skip to content

Commit

Permalink
[CLIENT-2970] CI/CD: Use manylinux x86_64 wheel instead of building c…
Browse files Browse the repository at this point in the history
…lient locally for running valgrind (#624)
  • Loading branch information
juliannguyen4 authored May 31, 2024
1 parent 95740e5 commit 480688a
Showing 1 changed file with 9 additions and 1 deletion.
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

0 comments on commit 480688a

Please sign in to comment.