-
Notifications
You must be signed in to change notification settings - Fork 70
37 lines (33 loc) · 968 Bytes
/
vagrant.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Distro and LVM tests
on:
push:
branches:
- main
pull_request:
schedule:
- cron: '17 20 * * *'
jobs:
vagrant:
strategy:
matrix:
vagrant_target:
- debian
- debianrustup
- debianlvm
- rocky9
- fedora33
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install Parallels
run: |
curl -o parallels.dmg $PARALLELS_DMG_URL
hdiutil attach parallels.dmg
sudo open -a "/Volumes/Parallels Desktop "*"/Install.app"
sudo cp -R "/Volumes/Parallels Desktop "*"/Parallels Desktop.app" /Applications
ls "/Applications/Parallels Desktop.app/Contents/MacOS"
- name: Start vagrant box
run: |
PATH="/Applications/Parallels Desktop.app/Contents/MacOS/:$PATH"
vagrant plugin install vagrant-parallels
vagrant up --provider parallels ${{ matrix.vagrant_target }}