Specify target platform version in binary artifacts #7
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
# This workflow generates artifacts such as avifenc and avifdec for convenience. | |
name: CI macOS Release Artifacts | |
on: | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
build-macos-artifacts: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest] | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./.github/actions/setup-macos | |
with: | |
codec-aom: "LOCAL" | |
codec-dav1d: "LOCAL" | |
- name: Prepare libavif (cmake) | |
run: > | |
cmake -G Ninja -S . -B build | |
-DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF | |
-DAVIF_CODEC_AOM=LOCAL -DAVIF_CODEC_AOM_ENCODE=ON | |
-DAVIF_CODEC_AOM_DECODE=OFF -DAVIF_CODEC_DAV1D=LOCAL | |
-DAVIF_LIBSHARPYUV=LOCAL -DAVIF_LIBYUV=LOCAL | |
-DAVIF_ZLIBPNG=LOCAL -DAVIF_JPEG=LOCAL | |
-DAVIF_BUILD_EXAMPLES=OFF -DAVIF_BUILD_APPS=ON | |
-DAVIF_BUILD_TESTS=OFF -DAVIF_ENABLE_WERROR=ON | |
-DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ | |
-DCMAKE_OSX_DEPLOYMENT_TARGET=11 | |
- name: Build libavif (ninja) | |
working-directory: ./build | |
run: ninja | |
# TODO: notarize the binaries | |
- name: Create README.txt | |
run: | | |
cat <<'EOF' > build/README.txt | |
For security reasons, macOS might prevent these binaries from running. | |
If you get a message saying that "Apple cannot check it for malicious software", | |
run this command once: | |
$ sudo xattr -r -d com.apple.quarantine ./avifenc ./avifdec | |
See also https://github.com/AOMediaCodec/libavif/issues/2460 | |
EOF | |
- name: Archive artifacts | |
uses: thedoctor0/zip-release@b57d897cb5d60cb78b51a507f63fa184cfe35554 # 0.7.6 | |
with: | |
type: zip | |
filename: ${{ runner.os }}-artifacts.zip | |
directory: build | |
path: | | |
avifenc | |
avifdec | |
README.txt | |
- name: Upload artifacts | |
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 | |
with: | |
name: ${{ runner.os }}-artifacts.zip | |
path: build/${{ runner.os }}-artifacts.zip |