-
Notifications
You must be signed in to change notification settings - Fork 933
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4714 from rapidsai/branch-0.13
- Loading branch information
Showing
770 changed files
with
64,736 additions
and
19,703 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
python/cudf/cudf/_version.py export-subst | ||
CHANGELOG.md merge=union |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Auto Assign New Issues to Triage Project | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
assign_one_project: | ||
runs-on: ubuntu-latest | ||
name: Assign to New Issues to Triage Project | ||
steps: | ||
- name: Process bug issues | ||
uses: docker://takanabe/github-actions-automate-projects:v0.0.1 | ||
if: contains(github.event.issue.labels.*.name, 'bug') && contains(github.event.issue.labels.*.name, '? - Needs Triage') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_PROJECT_URL: https://github.com/rapidsai/cudf/projects/1 | ||
GITHUB_PROJECT_COLUMN_NAME: 'Needs prioritizing' | ||
- name: Process feature issues | ||
uses: docker://takanabe/github-actions-automate-projects:v0.0.1 | ||
if: contains(github.event.issue.labels.*.name, 'feature request') && contains(github.event.issue.labels.*.name, '? - Needs Triage') | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_PROJECT_URL: https://github.com/rapidsai/cudf/projects/9 | ||
GITHUB_PROJECT_COLUMN_NAME: 'Needs prioritizing' | ||
- name: Process other issues | ||
uses: docker://takanabe/github-actions-automate-projects:v0.0.1 | ||
if: contains(github.event.issue.labels.*.name, '? - Needs Triage') && (!contains(github.event.issue.labels.*.name, 'bug') && !contains(github.event.issue.labels.*.name, 'feature request')) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_PROJECT_URL: https://github.com/rapidsai/cudf/projects/10 | ||
GITHUB_PROJECT_COLUMN_NAME: 'Needs prioritizing' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/bash | ||
|
||
NOTEBOOKS_DIR=${WORKSPACE}/notebooks | ||
NBTEST=${WORKSPACE}/ci/utils/nbtest.sh | ||
LIBCUDF_KERNEL_CACHE_PATH=${WORKSPACE}/.jitcache | ||
|
||
cd ${NOTEBOOKS_DIR} | ||
TOPLEVEL_NB_FOLDERS=$(find . -name *.ipynb |cut -d'/' -f2|sort -u) | ||
|
||
# Add notebooks that should be skipped here | ||
# (space-separated list of filenames without paths) | ||
|
||
SKIPNBS="" | ||
|
||
## Check env | ||
env | ||
|
||
EXITCODE=0 | ||
|
||
# Always run nbtest in all TOPLEVEL_NB_FOLDERS, set EXITCODE to failure | ||
# if any run fails | ||
|
||
cd ${NOTEBOOKS_DIR} | ||
for nb in $(find . -name "*.ipynb"); do | ||
nbBasename=$(basename ${nb}) | ||
# Skip all NBs that use dask (in the code or even in their name) | ||
if ((echo ${nb}|grep -qi dask) || \ | ||
(grep -q dask ${nb})); then | ||
echo "--------------------------------------------------------------------------------" | ||
echo "SKIPPING: ${nb} (suspected Dask usage, not currently automatable)" | ||
echo "--------------------------------------------------------------------------------" | ||
elif (echo " ${SKIPNBS} " | grep -q " ${nbBasename} "); then | ||
echo "--------------------------------------------------------------------------------" | ||
echo "SKIPPING: ${nb} (listed in skip list)" | ||
echo "--------------------------------------------------------------------------------" | ||
else | ||
nvidia-smi | ||
${NBTEST} ${nbBasename} | ||
EXITCODE=$((EXITCODE | $?)) | ||
rm -rf ${LIBCUDF_KERNEL_CACHE_PATH}/* | ||
fi | ||
done | ||
|
||
|
||
nvidia-smi | ||
|
||
exit ${EXITCODE} |
Oops, something went wrong.