Skip to content

Remove submodule

Remove submodule #43

Workflow file for this run

name: "Push"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
Build:
runs-on: "macos-14"
defaults:
run:
shell: "bash"
env:
DEVELOPER_DIR: "/Applications/Xcode_15.2.app"
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
with:
submodules: "recursive"
- name: "Install build dependencies"
run: "brew install automake autoconf libtool meson autogen gtk-doc bison yasm"
- name: "Add bison to PATH"
run: 'echo "$(brew --prefix)/opt/bison/bin" >> "$GITHUB_PATH"'
- name: "Download and extract FFmpegKit"
run: |
curl -fsSL https://github.com/arthenica/ffmpeg-kit/archive/refs/tags/v6.0.LTS.tar.gz | tar -xz
mv ffmpeg-kit-6.0.LTS ffmpeg-kit
- name: "Build XCFrameworks"
working-directory: "ffmpeg-kit"
run: |
./ios.sh \
--xcframework \
--enable-ios-audiotoolbox \
--enable-ios-avfoundation \
--enable-ios-videotoolbox
- name: "Zip XCFrameworks"
working-directory: "ffmpeg-kit/prebuilt/bundle-apple-xcframework-ios"
run: "ls -d *.xcframework | xargs -I{} -n1 zip -r {}.zip {}"
- name: "Upload XCFrameworks"
uses: "actions/upload-artifact@v4"
with:
name: "FFmpeg Kit XCFrameworks"
path: "ffmpeg-kit/prebuilt/bundle-apple-xcframework-ios/*.zip"