Skip to content

Commit

Permalink
ci: try build ubuntu with cuda
Browse files Browse the repository at this point in the history
  • Loading branch information
For-Chance committed Sep 26, 2024
1 parent 16a1e0d commit f30dcc1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,17 +132,17 @@ jobs:
# Only installs specified subpackages, must be in the form of a JSON array. For example, if you only want to install nvcc and visual studio integration: ["nvcc", "visual_studio_integration"] double quotes required! Note that if you want to use this on Linux, 'network' method MUST be used.
sub-packages: '["libcusparse"]' # optional, default is []
# Only installs specified subpackages that do not have the cuda prefix, must be in the form of a JSON array. For example, if you only want to install libcublas and libcufft: ["libcublas", "libcufft"] double quotes required! Note that this only works with 'network' method on only on Linux.
non-cuda-sub-packages: # optional, default is []
non-cuda-sub-packages: '[]' # optional, default is []
# Installation method, can be either 'local' or 'network'. 'local' downloads the entire installer with all packages and runs that (you can still only install certain packages with sub-packages on Windows). 'network' downloads a smaller executable which only downloads necessary packages which you can define in subPackages
method: # optional, default is local
method: local # optional, default is local
# (Linux and 'local' method only) override arguments for the linux .run installer. For example if you don't want samples use ["--toolkit"] double quotes required!
linux-local-args: # optional, default is ["--toolkit", "--samples"]
linux-local-args: '["--toolkit", "--samples"]' # optional, default is ["--toolkit", "--samples"]
# Use GitHub cache to cache downloaded installer on GitHub servers
use-github-cache: # optional, default is true
use-github-cache: true # optional, default is true
# Use local cache to cache downloaded installer on the local runner
use-local-cache: # optional, default is true
use-local-cache: true # optional, default is true
# Suffix of log file name in artifact
log-file-suffix: # optional, default is log.txt
log-file-suffix: log.txt # optional, default is log.txt

- name: Check for CUDA
id: check_cuda
Expand Down

0 comments on commit f30dcc1

Please sign in to comment.