[shotwell/wip/add-ci] ci: Add initial CI configuration
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [shotwell/wip/add-ci] ci: Add initial CI configuration
- Date: Sun, 18 Nov 2018 11:00:19 +0000 (UTC)
commit f73ceccbbaa1d7fa1b366827826ce6ef1e3572e7
Author: Jens Georg <mail jensge org>
Date: Sun Nov 18 11:59:43 2018 +0100
ci: Add initial CI configuration
.gitlab-ci.yml | 80 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 80 insertions(+)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..0fcf0e68
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,80 @@
+stages:
+- test
+- review
+
+variables:
+ BUNDLE: "org.gnome.Shotwell.Devel.flatpak"
+ GIT_SUBMODULE_STRATEGY: recursive
+
+flatpak:
+ image: registry.gitlab.gnome.org/gnome/gnome-runtime-images/gnome:master
+ stage: test
+ variables:
+ MANIFEST_PATH: "flatpak/org.gnome.Shotwell.json"
+ RUNTIME_REPO: "https://sdk.gnome.org/gnome-nightly.flatpakrepo"
+ # Replace with your application name, as written in the manifest
+ FLATPAK_MODULE: "gnome-photos"
+ # Make sure to keep this in sync with the Flatpak manifest, all arguments
+ # are passed except the config-args because we build it ourselves
+ CONFIGURE_ARGS: "-Dudev=false -Dinstall-apport-hook=false -Dface-detection=true"
+ DBUS_ID: "org.gnome.Shotwell"
+
+ script:
+ - flatpak-builder --stop-at=${FLATPAK_MODULE} app ${MANIFEST_PATH}
+
+ # Make sure to keep this in sync with the Flatpak manifest, all arguments
+ # are passed except the config-args because we build it ourselves
+ - flatpak build app meson --prefix=/app ${CONFIGURE_ARGS} _build
+ - flatpak build app ninja -C _build install
+
+ - flatpak-builder --finish-only --repo=repo app ${MANIFEST_PATH}
+
+ # Run automatic tests inside the Flatpak env
+ #- xvfb-run -a -s "-screen 0 1024x768x24" flatpak build app ninja -C _build test
+ flatpak build app ninja -C _build test
+
+ # Generate a Flatpak bundle
+ - flatpak build-bundle repo ${BUNDLE} --runtime-repo=${RUNTIME_REPO} ${DBUS_ID}
+
+ artifacts:
+ paths:
+ - ${BUNDLE}
+ - _build/meson-logs/meson-log.txt
+ - _build/meson-logs/testlog.txt
+ expire_in: 2 days
+ cache:
+ paths:
+ - .flatpak-builder/downloads
+ - .flatpak-builder/git
+
+review:
+ stage: review
+ dependencies:
+ - flatpak
+ script:
+ - echo "Generating flatpak deployment"
+ artifacts:
+ paths:
+ - ${BUNDLE}
+ expire_in: 30 days
+ environment:
+ name: review/$CI_COMMIT_REF_NAME
+ url: https://gitlab.gnome.org/$CI_PROJECT_PATH/-/jobs/$CI_JOB_ID/artifacts/raw/${BUNDLE}
+ on_stop: stop_review
+ except:
+ - master@GNOME/shotwell
+ - tags
+ - shotwell-.*
+
+stop_review:
+ stage: review
+ script:
+ - echo "Stopping flatpak deployment"
+ when: manual
+ environment:
+ name: review/$CI_COMMIT_REF_NAME
+ action: stop
+ except:
+ - master@GNOME/shotwell
+ - tags
+ - shotwell-.*
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]