From ff1595c0d4039363de2503b02f508d1eacc21e54 Mon Sep 17 00:00:00 2001 From: Kiefer Chang Date: Thu, 28 Dec 2023 16:50:06 +0800 Subject: [PATCH] ci: move to self-hosted action runner --- .github/workflows/vagrant-install.yaml | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/vagrant-install.yaml diff --git a/.github/workflows/vagrant-install.yaml b/.github/workflows/vagrant-install.yaml new file mode 100644 index 000000000..ff574b795 --- /dev/null +++ b/.github/workflows/vagrant-install.yaml @@ -0,0 +1,29 @@ +name: Vagrant install + +on: + pull_request: + types: [opened, reopened, synchronize] + +env: + LIBVIRT_DEFAULT_URI: "qemu:///system" + +jobs: + main: + name: Build and deploy + runs-on: + - self-hosted + - Linux + - kvm + - vagrant + - equinix + steps: + - uses: actions/checkout@v3 + # - name: Build Harvester artifacts + # run: | + # make + - name: Clone and checkout ipxe-examples + uses: actions/checkout@v3 + with: + repository: harvester/ipxe-examples + ref: main + path: ipxe-example