Skip to content
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

Vagrant Windows image: Add C++ redistributable #11596

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/vms/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Then, everything is removed.
| [`fedora`](fedora/) | source | -- | -- |
| [`Linux Mint (Cinnamon)`](linux-mint-cinnamon/) | source | Firefox | yes |
| [`ubuntu`](ubuntu/) | snap | Firefox | yes |
| [`windows`](windows/) | source | Firefox | yes |
| [`windows`](windows/) | source | Edge | -- |

## Troubleshooting

Expand Down
8 changes: 6 additions & 2 deletions scripts/vms/windows/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ Vagrant.configure("2") do |config|

choco install libericajdk
choco install git.install -y --params "/GitAndUnixToolsOnPath /WindowsTerminal /WindowsTerminalProfile"
choco install firefox
choco install libreoffice-fresh

# Required by AI functionaltiy
choco choco install vcredist140

# choco install firefox
# choco install libreoffice-fresh
SHELL

config.vm.provision "shell", reboot: true
Expand Down
Loading