[gtk/macos-ci: 1/7] ci: Add a macos build
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/macos-ci: 1/7] ci: Add a macos build
- Date: Mon, 4 Jan 2021 02:26:59 +0000 (UTC)
commit 02ccc4b0ece4968c5abd41c3b4ef49da768080bc
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Jan 2 22:34:52 2021 -0500
ci: Add a macos build
Most of this is cribbed from glib.
We don't use COMMON_MESON_FLAGS here, since disabling
-Werror one subproject at a time is too painful for
all the promoted sub-sub-projects. This needs a better
solution in meson.
Since this is a full rebuild of the entire stack, limit
this to master and merge requests.
.gitlab-ci.yml | 20 ++++++++++++++++++++
.gitlab-ci/show-execution-environment.sh | 6 ++++++
meson.build | 10 ++++++++--
3 files changed, 34 insertions(+), 2 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 18565b2913..ed714f4668 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -144,6 +144,26 @@ msys2-mingw64:
MSYSTEM: "MINGW64"
CHERE_INVOKING: "yes"
+macos:
+ stage: build
+ tags:
+ - macos
+ needs: []
+ before_script:
+ - bash .gitlab-ci/show-execution-environment.sh
+ - pip3 install --user meson==0.56
+ - pip3 install --user ninja
+ - export PATH=/Users/gitlabrunner/Library/Python/3.7/bin:$PATH
+ script:
+ - meson -Dx11-backend=false
+ -Dintrospection=disabled
+ _build
+ - ninja -C _build
+ artifacts:
+ when: always
+ paths:
+ - "${CI_PROJECT_DIR}/_build/meson-logs"
+
.flatpak-defaults:
image: $FLATPAK_IMAGE
stage: flatpak
diff --git a/.gitlab-ci/show-execution-environment.sh b/.gitlab-ci/show-execution-environment.sh
new file mode 100755
index 0000000000..45ed68e6b2
--- /dev/null
+++ b/.gitlab-ci/show-execution-environment.sh
@@ -0,0 +1,6 @@
+#!/bin/bash
+
+set -eux -o pipefail
+
+xcodebuild -version
+xcodebuild -showsdks
diff --git a/meson.build b/meson.build
index 60e7729a8e..e8d6841116 100644
--- a/meson.build
+++ b/meson.build
@@ -381,8 +381,14 @@ epoxy_dep = dependency('epoxy', version: epoxy_req,
harfbuzz_dep = dependency('harfbuzz', version: '>= 0.9', required: false,
fallback: ['harfbuzz', 'libharfbuzz_dep'])
xkbdep = dependency('xkbcommon', version: xkbcommon_req, required: wayland_enabled)
-graphene_dep = dependency('graphene-gobject-1.0', version: graphene_req,
- fallback: ['graphene', 'graphene_dep'])
+if os_darwin
+ graphene_dep = dependency('graphene-gobject-1.0', version: graphene_req,
+ fallback: ['graphene', 'graphene_dep'],
+ default_options: ['introspection=false'])
+else
+ graphene_dep = dependency('graphene-gobject-1.0', version: graphene_req,
+ fallback: ['graphene', 'graphene_dep'])
+endif
iso_codes_dep = dependency('iso-codes', required: false)
gtk_doc_dep = dependency('gtk-doc', version: '>=1.33',
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]