Skip to content

Commit 2a97395

Browse files
committed
more 'script' updates
1 parent 0439113 commit 2a97395

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
3535
date: ${{ inputs.date }}
36+
script: ci/build_cpp.sh
3637
sha: ${{ inputs.sha }}
3738
python-build:
3839
needs: [cpp-build]
@@ -42,6 +43,7 @@ jobs:
4243
build_type: ${{ inputs.build_type || 'branch' }}
4344
branch: ${{ inputs.branch }}
4445
date: ${{ inputs.date }}
46+
script: ci/build_python.sh
4547
sha: ${{ inputs.sha }}
4648
upload-conda:
4749
needs: [cpp-build, python-build]

.github/workflows/pr.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ jobs:
6868
- '!.pre-commit-config.yaml'
6969
- '!CONTRIBUTING.md'
7070
- '!README.md'
71+
- '!ci/release/update-version.sh'
7172
- '!docs/**'
7273
- '!img/**'
7374
- '!python/**'
@@ -78,6 +79,7 @@ jobs:
7879
- '!.pre-commit-config.yaml'
7980
- '!CONTRIBUTING.md'
8081
- '!README.md'
82+
- '!ci/release/update-version.sh'
8183
- '!docs/**'
8284
- '!img/**'
8385
- '!thirdparty/LICENSES/**'
@@ -94,6 +96,7 @@ jobs:
9496
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
9597
with:
9698
build_type: pull-request
99+
script: ci/build_cpp.sh
97100
node_type: cpu16
98101
conda-cpp-tests:
99102
needs: [conda-cpp-build, changed-files]
@@ -102,6 +105,7 @@ jobs:
102105
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_cpp
103106
with:
104107
build_type: pull-request
108+
script: ci/test_cpp.sh
105109
conda-cpp-checks:
106110
needs: conda-cpp-build
107111
secrets: inherit
@@ -115,13 +119,15 @@ jobs:
115119
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
116120
with:
117121
build_type: pull-request
122+
script: ci/build_python.sh
118123
conda-python-tests:
119124
needs: [conda-python-build, changed-files]
120125
secrets: inherit
121126
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
122127
if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python
123128
with:
124129
build_type: pull-request
130+
script: ci/test_python.sh
125131
docs-build:
126132
needs: conda-python-build
127133
secrets: inherit

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
build_type: ${{ inputs.build_type }}
3434
branch: ${{ inputs.branch }}
3535
date: ${{ inputs.date }}
36+
script: ci/test_cpp.sh
3637
sha: ${{ inputs.sha }}
3738
conda-python-tests:
3839
secrets: inherit
@@ -41,6 +42,7 @@ jobs:
4142
build_type: ${{ inputs.build_type }}
4243
branch: ${{ inputs.branch }}
4344
date: ${{ inputs.date }}
45+
script: ci/test_python.sh
4446
sha: ${{ inputs.sha }}
4547
wheel-tests-pylibraft:
4648
secrets: inherit

0 commit comments

Comments
 (0)