Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit ba3eddd

Browse files
authored
Skip ubuntu-.*-desktop-amd64 libvirt from checking (#309)
1 parent cc6aab8 commit ba3eddd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,8 @@ jobs:
180180
set -eux
181181
for NAME in ubuntu-{20,18}.04-desktop-amd64 ubuntu-{20,18,16}.04-server-amd64 my_ubuntu-20.04-server-amd64 {my_,}windows-10-enterprise-x64-eval windows-server-{2019,2016,2012_r2}-standard-x64-eval; do
182182
for VAGRANT_PROVIDER in libvirt virtualbox; do
183+
# ubuntu-{20,18}.04-desktop-amd64 libvirt - skip checks for Ubuntu Desktop - They can not be built using GH Actions
184+
if [[ "${NAME}" =~ "ubuntu-.*-desktop-amd64" ]] && [[ "${VAGRANT_PROVIDER}" = "libvirt" ]] ; then continue ; fi
183185
CURRENT_VERSION=$(curl -s https://app.vagrantup.com/api/v1/box/peru/${NAME} | jq -r ".current_version.version")
184186
CHECKSUM=$(curl -s https://app.vagrantup.com/api/v1/box/peru/${NAME} | jq -r ".current_version.providers[] | select (.name == \"${VAGRANT_PROVIDER}\") .checksum")
185187
URL="https://app.vagrantup.com/peru/boxes/${NAME}/versions/${CURRENT_VERSION}/providers/${VAGRANT_PROVIDER}.box"

0 commit comments

Comments
 (0)