mirror of
https://github.com/saltstack-formulas/packages-formula.git
synced 2025-04-07 04:51:41 +00:00
54 lines
1.7 KiB
YAML
54 lines
1.7 KiB
YAML
# -*- coding: utf-8 -*-
|
|
# vim: ft=yaml
|
|
---
|
|
driver:
|
|
name: vagrant
|
|
cache_directory: false
|
|
customize:
|
|
usbxhci: 'off'
|
|
gui: false
|
|
ssh:
|
|
shell: /bin/sh
|
|
linked_clone: true
|
|
<% unless ENV['CI'] %>
|
|
synced_folders:
|
|
- - '.kitchen/kitchen-vagrant/%{instance_name}/vagrant'
|
|
- '/vagrant'
|
|
- 'create: true, disabled: false'
|
|
<% end %>
|
|
|
|
platforms:
|
|
- name: windows-10-latest-py3
|
|
driver:
|
|
box: techneg/win10x64-pro-salt
|
|
cache_directory: "/omnibus/cache"
|
|
customize: {}
|
|
ssh: {}
|
|
provisioner:
|
|
# yamllint disable rule:line-length
|
|
init_environment: |
|
|
# Workaround to allow `kitchen converge` to be used multiple times
|
|
# without having to `kitchen destroy` first: remove state files cached by
|
|
# Salt during the previous `converge` (if present)
|
|
rm -recurse `
|
|
C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base `
|
|
-ErrorAction SilentlyContinue
|
|
exit 0
|
|
# yamllint enable rule:line-length
|
|
- name: windows-81-latest-py3
|
|
driver:
|
|
box: techneg/win81x64-pro-salt
|
|
cache_directory: "/omnibus/cache"
|
|
customize: {}
|
|
ssh: {}
|
|
provisioner:
|
|
# yamllint disable rule:line-length
|
|
init_environment: |
|
|
# Workaround to allow `kitchen converge` to be used multiple times
|
|
# without having to `kitchen destroy` first: remove state files cached by
|
|
# Salt during the previous `converge` (if present)
|
|
rm -recurse `
|
|
C:\Users\vagrant\AppData\Local\Temp\kitchen\var\cache\salt\minion\files\base `
|
|
-ErrorAction SilentlyContinue
|
|
exit 0
|
|
# yamllint enable rule:line-length
|