Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit 25aa59b

Browse files
author
Rebecca Graber
authored
fix: use old virtualbox in cli tests for mac (#858)
1 parent 37ff02e commit 25aa59b

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/cli-tests.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,8 @@ jobs:
2424
os:
2525
- name: linux
2626
image: ubuntu-20.04 # Focal Fossa
27-
# The virtual environment for mac10.15 is currently using a version of VirtualBox
28-
# that is incompatible. Commenting out the mac tests until this is addressed.
29-
# See https://github.com/actions/virtual-environments/issues/4466 for details
30-
# - name: mac
31-
# image: macos-10.15 # Catalina
27+
- name: mac
28+
image: macos-10.15 # Catalina
3229
python-version:
3330
- '3.8'
3431
fail-fast: false
@@ -69,7 +66,13 @@ jobs:
6966
- name: Docker installation - Mac
7067
if: ${{ matrix.os.name == 'mac' }}
7168
run: |
69+
# download an old version of virtualbox (latest is incompatible with github actions)
70+
brew uninstall virtualbox
71+
cd $(brew --repo homebrew/cask)
72+
git checkout 8670a72380c57c606d6582b645421e31dad2eee2
73+
brew install --cask virtualbox
7274
brew install docker docker-machine
75+
7376
docker-machine create --driver virtualbox default
7477
# Apply Docker environment variables to later steps.
7578
#

0 commit comments

Comments
 (0)