ref: ede96b239b90bf9c9d9a01f06005ae09fb4fa19b
parent: e294a95ca85f4d1aa2cd1a6e00e572acd7f03871
author: Anurag Thakur <anuthadev@gmail.com>
date: Tue Oct 12 14:26:35 EDT 2021
CI: Add macOS CI, including a clang build
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,6 +23,11 @@
image: 'registry.freedesktop.org/freetype/docker-images/debian:latest'
stage: 'build'
+.build macos common:
+ stage: 'build'
+ tags:
+ - 'gst-macos-11.1'
+
.build windows meson:
extends: '.build windows common'
variables:
@@ -142,3 +147,37 @@
-D FT_REQUIRE_ZLIB=TRUE
cmake --build build --target install
+
+macos autotools:
+ extends: '.build macos common'
+ before_script:
+ - '/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"'
+ script:
+ - brew install autoconf automake libtool
+ - ./autogen.sh
+ - ./configure
+ - 'make -j$(sysctl -n hw.logicalcpu)'
+ - make install
+
+macos autotools clang:
+ extends: '.build macos common'
+ before_script:
+ - '/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"'
+ script:
+ - brew install autoconf automake libtool
+ - ./autogen.sh
+ - './configure CC=clang'
+ - 'make -j$(sysctl -n hw.logicalcpu)'
+ - make install
+
+macos meson:
+ extends: '.build macos common'
+ script:
+ - pip3 install --upgrade pip
+ - pip3 install -U meson
+ - pip3 install --upgrade certifi
+ - pip3 install -U ninja
+
+ - meson setup build
+ - meson compile --verbose -C build
+ - sudo meson install -C build