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
It would be nice, if would be possible install software, that missed on current PC.
If:
appveyor.yml
User machine can't have software, that pre-installed on AppVeyor. It would be nice, if would be possible simply add missing software.
localappveyor.yml
install: choco: - nodejs - git - ruby
User run a command:
LocalAppVeyor build --job 0 --install
Before AppVeyor steps will run file:
START /B CMD /C choco install nodejs --yes START /B CMD /C choco install git --yes START /B CMD /C choco install ruby --yes
Chocolatey will install parallel nodejs, git, ruby — names of Chocolatey packages.
nodejs
git
ruby
See choco install description for details.
choco install
Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. Summary
It would be nice, if would be possible install software, that missed on current PC.
2. Argumentation
If:
appveyor.yml
User machine can't have software, that pre-installed on AppVeyor. It would be nice, if would be possible simply add missing software.
3. Example of expected behavior
localappveyor.yml
:User run a command:
Before AppVeyor steps will run file:
Chocolatey will install parallel
nodejs
,git
,ruby
— names of Chocolatey packages.See
choco install
description for details.Thanks.
The text was updated successfully, but these errors were encountered: