Skip to content

Commit

Permalink
Reduce the On-Demand processing
Browse files Browse the repository at this point in the history
  • Loading branch information
electrocucaracha committed Dec 19, 2024
1 parent 3b4b7e1 commit 55894db
Showing 1 changed file with 3 additions and 18 deletions.
21 changes: 3 additions & 18 deletions .github/workflows/on-demand_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu_focal, ubuntu_jammy, rocky_9, opensuse_tumbleweed]
provider: [all]
provider: [virtualbox, libvirt]
include:
- os: opensuse_leap
provider: virtualbox
Expand All @@ -89,23 +89,8 @@ jobs:
- uses: ./.github/actions/vagrant-setup
with:
distro: ${{ matrix.os }}
- name: Check Libvirt Provider
if: matrix.provider == 'libvirt' || matrix.provider == 'all'
- name: Vagrant up validation
uses: ./.github/actions/vagrant-up
with:
provider: libvirt
os: ${{ matrix.os }}
- name: Clenup instance
if: matrix.provider == 'libvirt' || matrix.provider == 'all'
env:
PROVIDER: libvirt
VAGRANT_NAME: ${{ matrix.os }}_libvirt
run: |
vagrant halt "$VAGRANT_NAME"
vagrant destroy -f "$VAGRANT_NAME"
- name: Check VirtualBox Provider
if: matrix.provider == 'virtualbox' || matrix.provider == 'all'
uses: ./.github/actions/vagrant-up
with:
provider: virtualbox
provider: ${{ matrix.provider }}
os: ${{ matrix.os }}

0 comments on commit 55894db

Please sign in to comment.