Skip to content

Commit

Permalink
ci: Switch macOS back to v10.15
Browse files Browse the repository at this point in the history
  The `macos-latest` Github Actions virtual environment does not support
  VirtualBox anymore (see
  actions/runner-images#4060 and
  actions/runner-images#4010 for more
  details).

  Since we do need a virtual machine running Linux for the cozy-stack to
  have access to a unix filesystem and mimic our production VFS
  behavior, we have to switch back to using the `macos-10.15` virtual
  environment.

  Apparently Github is looking for a solution to this issue so once they
  do find one, we'll be able to switch again to the `macos-latest`
  environment.
  • Loading branch information
taratatach committed Dec 1, 2021
1 parent 4987cc4 commit a0f3149
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

unit:
needs: cancel
runs-on: macos-latest
runs-on: macos-10.15
name: Unit tests
strategy:
matrix:
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

integration:
needs: cancel
runs-on: macos-latest
runs-on: macos-10.15
name: Integration tests
strategy:
matrix:
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:

scenarios:
needs: cancel
runs-on: macos-latest
runs-on: macos-10.15
name: Scenarios
strategy:
matrix:
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:

build:
needs: cancel
runs-on: macos-latest
runs-on: macos-10.15
name: Build packages
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit a0f3149

Please sign in to comment.