Skip to content

Commit 3288623

Browse files
committed
Try a fix for a vbox issue
1 parent 749c43d commit 3288623

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.github/workflows/build-macos.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,13 @@ jobs:
385385
run: |
386386
# coreutils provides a readlink that supports `-f`
387387
brew install coreutils docker docker-machine
388+
389+
# <https://github.com/actions/virtual-environments/issues/4431>
390+
brew uninstall virtualbox
391+
cd "$(brew --repo homebrew/cask)"
392+
git checkout 8670a72380c57c606d6582b645421e31dad2eee2
393+
brew install --cask virtualbox
394+
388395
mkdir -p ~/.docker/machine/cache
389396
wget -O ~/.docker/machine/cache/boot2docker.iso https://github.com/boot2docker/boot2docker/releases/download/v19.03.12/boot2docker.iso
390397
docker-machine --native-ssh create --driver virtualbox default

.github/workflows/build-ubuntu.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ jobs:
5353
sudo apt-get update -qq
5454
sudo apt-get install eatmydata
5555
sudo eatmydata apt-get install singularity-container gnupg moreutils strace
56-
echo "just a touch to trigger workflow"
5756
5857
- name: Determine git-annex ref to build
5958
run: |

.github/workflows/template/build-{{ostype}}.yaml.j2

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,13 @@ jobs:
605605
{% if ostype == "macos" %}
606606
# coreutils provides a readlink that supports `-f`
607607
brew install coreutils docker docker-machine
608+
609+
# <https://github.com/actions/virtual-environments/issues/4431>
610+
brew uninstall virtualbox
611+
cd "$(brew --repo homebrew/cask)"
612+
git checkout 8670a72380c57c606d6582b645421e31dad2eee2
613+
brew install --cask virtualbox
614+
608615
mkdir -p ~/.docker/machine/cache
609616
wget -O ~/.docker/machine/cache/boot2docker.iso https://github.com/boot2docker/boot2docker/releases/download/v19.03.12/boot2docker.iso
610617
docker-machine --native-ssh create --driver virtualbox default

0 commit comments

Comments
 (0)