We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
--matrix
Right now the --matrix flag accepts ; delimited key/value pairs like this: --matrix "cuda=11.5;arch=$(arch)"
;
--matrix "cuda=11.5;arch=$(arch)"
We should switch the --matrix value to be YAML to be consistent with dependencies.yaml.
dependencies.yaml
e.g. --matrix '{"cuda": "11.6", "arch": "x86_64"}
--matrix '{"cuda": "11.6", "arch": "x86_64"}
The text was updated successfully, but these errors were encountered:
Since this would be yet another breaking change, it might make sense to tackle #12 first.
Sorry, something went wrong.
No branches or pull requests
Right now the
--matrix
flag accepts;
delimited key/value pairs like this:--matrix "cuda=11.5;arch=$(arch)"
We should switch the
--matrix
value to be YAML to be consistent withdependencies.yaml
.e.g.
--matrix '{"cuda": "11.6", "arch": "x86_64"}
The text was updated successfully, but these errors were encountered: