Skip to content

Commit 55d56a3

Browse files
committed
downgrade mac
1 parent 91f6b36 commit 55d56a3

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: [ubuntu-20.04, windows-latest, macos-latest]
16+
os: [ubuntu-20.04, windows-latest, macos-12]
17+
include:
18+
- os: macos-latest
19+
macos-version: "12"
1720

1821
steps:
1922
- uses: actions/checkout@v3
@@ -24,21 +27,21 @@ jobs:
2427
python-version: '3.7'
2528

2629
- name: Install FFMPEG (Ubuntu)
27-
if: matrix.os == 'ubuntu-latest'
30+
if: matrix.os == 'ubuntu-20.04'
2831
run: |
2932
sudo apt-get update
3033
sudo apt-get install -y ffmpeg
3134
32-
- name: Install FFMPEG (macOS)
33-
if: matrix.os == 'macos-latest'
34-
run: |
35-
brew install ffmpeg
36-
3735
- name: Install FFMPEG (Windows)
3836
if: matrix.os == 'windows-latest'
3937
run: |
4038
choco install ffmpeg
4139
40+
- name: Install FFMPEG (macOS)
41+
if: matrix.os == 'macos-12'
42+
run: |
43+
brew install ffmpeg
44+
4245
- name: Install PySide2
4346
run: |
4447
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)