-
Notifications
You must be signed in to change notification settings - Fork 17
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
fix: correct cygwin path #231
fix: correct cygwin path #231
Conversation
Added back grep sanity check Rel: jenkins-infra/helpdesk#2873
* chore(packer) add support of packer 1.8.x Signed-off-by: Damien Duportal <[email protected]> * fix(packer) cleanup references to former .auto.pkrvars.hcl Signed-off-by: Damien Duportal <[email protected]> * feat(windows) increase the disk size above the 127 Gb limit (Azure limit) Signed-off-by: Damien Duportal <[email protected]> * chore: cleanup + refactor packer templates - Support multiple OS versions - Split HCL files to ease maintenance Signed-off-by: Damien Duportal <[email protected]> * chore(packer,updatecli) track plugin version with updatecli + bump amazon,azure and docker plugins to last versions Signed-off-by: Damien Duportal <[email protected]> * Apply suggestions from code review Co-authored-by: Hervé Le Meur <[email protected]> Co-authored-by: Hervé Le Meur <[email protected]>
provisioning/windows-provision.ps1
Outdated
# function Choco-Install { | ||
# [CmdletBinding()] | ||
# param( | ||
# [Parameter(Mandatory, ValueFromPipeline)] | ||
# [string]$PackageName | ||
# ) | ||
# Process { | ||
# Invoke-Command & "choco.exe" install $PackageName --yes --no-progress --limit-output --fail-on-error-output | ||
# } | ||
# } | ||
|
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.
# function Choco-Install { | |
# [CmdletBinding()] | |
# param( | |
# [Parameter(Mandatory, ValueFromPipeline)] | |
# [string]$PackageName | |
# ) | |
# Process { | |
# Invoke-Command & "choco.exe" install $PackageName --yes --no-progress --limit-output --fail-on-error-output | |
# } | |
# } | |
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.
I intent to add later a proper Choco-Install function, which would also look for potential CHOCOLATEY_$PackageNam.toUpper()_VERSION env var to pass as arg if exist
make
worked great, but adding it to cygwin
didn't, and since I have build already a lot of images on this PR, I postponed it.
from infra.ci:
😥 |
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.
👏
Replaced "grep" sanity check by a listing of Cygwin tools folder (grep doesn't seems in the $PATH at that point)
Rel: jenkins-infra/helpdesk#2873