You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**3. Start Conda.** Open a new terminal window, which should now show Conda initialized.
217
217
218
-
**4. Check Conda Configuration.** Installing RAPIDS requires you to use `channel_priority: flexible`. You can check this and change it, if required, by doing:
218
+
**4. Check Conda Configuration.** Installing RAPIDS may require you to use `channel_priority: flexible`.
219
+
220
+
If you are installing RAPIDS with CUDA 12 or greater, then you can use either `strict` or `flexible` channel priority.
221
+
222
+
If you are install RAPIDS with CUDA 11, then you must set `channel_priority: flexible`.
223
+
224
+
You can check this and change it, if required, by doing:
Copy file name to clipboardExpand all lines: resources/github-actions.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,7 @@ As an example, `rapids-print-env` is used to print common environment informatio
123
123
124
124
## Downloading CI Artifacts
125
125
126
-
Artifacts from both pull-requests and branch builds can be accessed on the Github UI for the specific workflow run, found in the Actions tab of the repository.
126
+
Artifacts from both pull-requests and branch builds can be accessed on the GitHub UI for the specific workflow run, found in the Actions tab of the repository.
127
127
128
128

129
129
@@ -133,7 +133,7 @@ There is also a link provided in the `Run actions/upload-artifact@v4` step of ev
133
133
134
134
This link downloads the required artifact as a zip file.
135
135
136
-
This can also be done using `ghcli` using the following command to download the artifact. This command also unzips the artifact to the destination location:
136
+
This can also be done using the following`gh` CLI command to download the artifact. This command also unzips the artifact to the destination location:
137
137
138
138
```sh
139
139
gh run download <workflow-run-id> --repo <repo-name> --name <artifact-name> --dir <destination-directory>
The artifacts that result from running `conda build` are conda channels. RAPIDS' CI system uploads these conda channels to GitHub Artifacts as zipfiles.
150
+
The artifacts that result from running `conda build` are conda channels. RAPIDS' CI system uploads these conda channels to GitHub Artifacts as zip files.
151
151
152
-
The packages in the conda channel can be used by downloading the artifact to your local filesystem using `ghcli` and using the resulting path in your conda commands.
152
+
The packages in the conda channel can be used by downloading the artifact to your local filesystem using `gh` CLI and using the resulting path in your conda commands.
153
153
154
154
For example, the following snippet will download an artifact for `librmm` from workflow run ID `14437867406` and install it into the active conda environment:
155
155
@@ -163,9 +163,9 @@ Note: Make sure you have the GitHub CLI (`gh`) installed and authenticated on yo
163
163
164
164
## Using Wheel CI Artifacts Locally
165
165
166
-
RAPIDS' CI system compresses the wheels that it builds into zipfiles and uploads them to GitHub Artifacts.
166
+
RAPIDS' CI system compresses the wheels that it builds into zip files and uploads them to GitHub Artifacts.
167
167
168
-
The wheels can be used byby downloading the artifact to your local filesystem using `ghcli` and using the resulting path in your pip commands.
168
+
The wheels can be used by downloading the artifact to your local filesystem using `gh` CLI and using the resulting path in your pip commands.
169
169
170
170
For example, the following snippet will download an artifact for `librmm` and install it into the active conda environment:
0 commit comments