-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update some CI versions, move docs-building to a script #146
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
set -e -E -u -o pipefail | ||
|
||
rapids-print-env | ||
|
||
make -C docs html | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This script is pretty thin right now, but it'll have more added to it in #129. See the diff there for details. Publishing a CPU-only conda package will allow us to run docs builds on a machine that doesn't have a GPU 😁 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,12 @@ files: | |
table: build-system | ||
includes: | ||
- build | ||
py_docs: | ||
output: none | ||
includes: | ||
- docs | ||
- py_version | ||
- run | ||
py_run: | ||
output: pyproject | ||
pyproject_dir: . | ||
|
@@ -77,9 +83,12 @@ dependencies: | |
common: | ||
- output_types: [conda, pyproject, requirements] | ||
packages: | ||
- sphinx | ||
- pydata-sphinx-theme | ||
- myst-parser | ||
- pydata-sphinx-theme | ||
- sphinx | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are just showing up in the diff because I wanted this list to be alphabetized. |
||
- output_types: [conda] | ||
packages: | ||
- make | ||
py_version: | ||
specific: | ||
- output_types: conda | ||
|
@@ -99,7 +108,11 @@ dependencies: | |
- matrix: | ||
py: "3.11" | ||
packages: | ||
- &latest_python python=3.11 | ||
- python=3.11 | ||
- matrix: | ||
py: "3.12" | ||
packages: | ||
- &latest_python python=3.12 | ||
- matrix: | ||
packages: | ||
- *latest_python | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This repo doesn't current use any
branch-*
branches. I suspect this was maybe copied from somewhere else in RAPIDS. Removing it to simplify configuration a bit.