Skip to content

Commit f862ecc

Browse files
committed
enable conda python tests to check lockfile behavior
1 parent c7910d5 commit f862ecc

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

.github/workflows/pr.yaml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,12 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
jobs:
13-
pr-builder:
14-
needs:
15-
- conda-cpp-build
16-
- conda-cpp-tests
17-
secrets: inherit
18-
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
19-
if: always()
20-
with:
21-
needs: ${{ toJSON(needs) }}
22-
2313
conda-cpp-build:
2414
secrets: inherit
2515
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
2616
with:
2717
build_type: pull-request
2818
script: ci/build_cpp.sh
29-
3019
conda-cpp-tests:
3120
needs: [conda-cpp-build]
3221
secrets: inherit
@@ -35,4 +24,19 @@ jobs:
3524
build_type: pull-request
3625
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
3726
script: ci/test_cpp.sh
38-
27+
conda-python-tests:
28+
needs: [conda-cpp-build]
29+
secrets: inherit
30+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@msarahan-add-prepare-conda-action
31+
with:
32+
build_type: pull-request
33+
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"
34+
script: ci/test_python.sh
35+
conda-python-distributed-tests:
36+
needs: [conda-cpp-build]
37+
secrets: inherit
38+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@msarahan-add-prepare-conda-action
39+
with:
40+
build_type: pull-request
41+
script: "ci/test_python_distributed.sh"
42+
container-options: "--cap-add CAP_SYS_PTRACE --shm-size=8g --ulimit=nofile=1000000:1000000"

0 commit comments

Comments
 (0)