mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-29 22:24:32 +02:00
Create main.yml
testing ci
This commit is contained in:
parent
652be42857
commit
48cd04fb93
26
.github/workflows/main.yml
vendored
Normal file
26
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
name: vagrant-up
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
vagrant-up:
|
||||||
|
runs-on: macos-10.15
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Cache Vagrant boxes
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: ~/.vagrant.d/boxes
|
||||||
|
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-vagrant-
|
||||||
|
- name: Show Vagrant version
|
||||||
|
run: vagrant --version
|
||||||
|
|
||||||
|
- name: Run vagrant up
|
||||||
|
run: vagrant up
|
||||||
|
|
||||||
|
- name: ssh into box after boot
|
||||||
|
run: vagrant ssh -c "/vagrant/solo-builder/builder-ci.sh"
|
Loading…
x
Reference in New Issue
Block a user