Skip to content

Commit

Permalink
Update ffmpeg.yml macOS settings
Browse files Browse the repository at this point in the history
  • Loading branch information
nilfm committed Dec 11, 2023
1 parent ef39008 commit e1c89bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ffmpeg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- os: ubuntu-latest
CC: gcc
CXX: g++
- os: macos-13
- os: macos-latest
CC: clang
CXX: clang++
runs-on: ${{ matrix.os }}
Expand All @@ -38,7 +38,7 @@ jobs:
sudo apt-get update
sudo -E apt-get -yq install ninja-build gcc nasm
- name: Install dependencies (mac)
if: matrix.os == 'macos-13'
if: matrix.os == 'macos-latest'
run: |
brew install -q ninja nasm
- uses: actions/checkout@v4
Expand All @@ -50,7 +50,7 @@ jobs:
run: |
git clone -q --branch master --depth=1 "https://github.com/FFmpeg/FFmpeg" ffmpeg
cd ffmpeg
./configure --enable-version3 --enable-libvmaf --cc="$CC" --cxx="$CXX" || { less ffbuild/config.log; exit 1; }
./configure --enable-version3 --enable-libvmaf --disable-indevs --cc="$CC" --cxx="$CXX" || { less ffbuild/config.log; exit 1; }
- name: Make FFmpeg
run: |
sudo make -C ffmpeg --quiet -j $(getconf _NPROCESSORS_ONLN 2>/dev/null || sysctl -n hw.ncpu) install
Expand Down

0 comments on commit e1c89bf

Please sign in to comment.