summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 12bc8018eb49a2814837792b7d9c4e1d14161ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
include: 'https://gitlab.gnome.org/GNOME/citemplates/raw/master/flatpak/flatpak_ci_initiative.yml'

stages:
- test
- review

variables:
    BUNDLE: "dfeet-git.flatpak"

fedora:
    stage: test
    image: fedora:rawhide
    before_script:
        - dnf update -y
        - dnf install -y desktop-file-utils dbus-daemon gettext glib2-devel gobject-introspection-devel gtk3-devel intltool itstool meson ninja-build python3-devel python3-pycodestyle libappstream-glib libwnck3 python3-gobject python3-gobject make yelp-tools xorg-x11-server-Xvfb
    script:
        - meson _build
        - ninja -C _build
        - mkdir -p /run/dbus
        - mkdir -p /var
        - ln -s /var/run /run
        - dbus-daemon --system --fork
        - xvfb-run -a -s "-screen 0 1024x768x24" ninja -C _build test
    artifacts:
        when: on_failure
        name: "d-feet-${CI_COMMIT_REF_NAME}-${CI_JOB_NAME}"
        paths:
            - "${CI_PROJECT_DIR}/_build/meson-logs/testlog.txt"


flatpak:
    extends: .flatpak
    variables:
        GIT_SUBMODULE_STRATEGY: normal

        # Replace with your manifest path
        MANIFEST_PATH: "org.gnome.dfeet.json"
        RUNTIME_REPO: "https://nightly.gnome.org/gnome-nightly.flatpakrepo"
        # Replace with your application name, as written in the manifest
        FLATPAK_MODULE: "d-feet"
        APP_ID: "org.gnome.dfeet"
        BUILD_DIR: ".app"
        # Make sure to keep this in sync with the Flatpak manifest, all arguments
        # are passed except the config-args because we build it ourselves
        MESON_ARGS: |
          -Dtests=true

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

stop_review:
    stage: review
    script:
        - echo "Stopping flatpak deployment"
    when: manual
    environment:
        name: review/$CI_COMMIT_REF_NAME
        action: stop