Skip to content

Commit b09b09c

Browse files
committed
Actually add job to CI
1 parent 12321b7 commit b09b09c

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/build.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,13 @@ jobs:
7474
date: ${{ inputs.date }}
7575
container_image: "rapidsai/ci-wheel:latest"
7676
run_script: "ci/build_static.sh"
77+
dynamic-build:
78+
secrets: inherit
79+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
80+
with:
81+
build_type: ${{ inputs.build_type || 'branch' }}
82+
branch: ${{ inputs.branch }}
83+
sha: ${{ inputs.sha }}
84+
date: ${{ inputs.date }}
85+
container_image: "rapidsai/ci-conda:latest"
86+
run_script: "ci/build_dynamic.sh"

.github/workflows/pr.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,11 @@ jobs:
4747
build_type: pull-request
4848
container_image: "rapidsai/ci-wheel:latest"
4949
run_script: "ci/build_static.sh"
50+
dynamic-build:
51+
needs: style
52+
secrets: inherit
53+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
54+
with:
55+
build_type: pull-request
56+
container_image: "rapidsai/ci-conda:latest"
57+
run_script: "ci/build_dynamic.sh"

0 commit comments

Comments
 (0)