windows.xml: Enable libopus and libxml2 #178
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install Homebrew packages | |
run: | | |
export HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1 | |
brew update | |
brew install ffmpeg llvm meson vapoursynth xxhash | |
- name: Set environment variables for Clang/LLVM | |
run: | | |
echo "CC=/opt/homebrew/opt/llvm/bin/clang" >> $GITHUB_ENV | |
echo "CXX=/opt/homebrew/opt/llvm/bin/clang++" >> $GITHUB_ENV | |
echo "PATH=/opt/homebrew/opt/llvm/bin:$PATH" >> $GITHUB_ENV | |
- name: Build | |
run: | | |
meson setup "-Dcpp_link_args=['-fuse-ld=lld', '-L/opt/homebrew/opt/llvm/lib/c++', '-Wl,-rpath,/opt/homebrew/opt/llvm/lib/c++']" build | |
ninja -C build |