summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 4d9944667bdb851e085fe1c5e41ed1a605918f04 (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
71
72
73
74
75
76
77
image: fedora:latest

variables:
  DEPENDENCIES: gcc
                gcc-c++
                libtool
                autoconf
                automake
                gettext
                gettext-devel
                gtk-doc
                gobject-introspection-devel
                make
                libxslt
                pkgconfig(gio-2.0)
                pkgconfig(mozjs-91)
                pkgconfig(duktape)
                expat-devel
                pkgconfig(libsystemd)
                pkgconfig(systemd)
                pam-devel
                python3-dbusmock
                meson
                git
                dbus-devel

before_script:
  - dnf upgrade -y --nogpgcheck fedora-release fedora-repos*
  - dnf update -y && dnf install -y $DEPENDENCIES


build_stable:
  stage: test
  script:
    - meson setup
      -D authfw=pam
      -D examples=true
      -D gtk_doc=true
      -D introspection=true
      -D man=true
      -D session_tracking=libsystemd-login
      -D tests=true
      -D cpp_args="-D_FORTIFY_SOURCE=2"
      builddir
    - meson compile -C builddir
    - meson test    -C builddir
    - meson install -C builddir
    - DESTDIR=$(pwd)/DESTDIR meson install -C builddir
  artifacts:
    name: 'test logs'
    when: 'always'
    paths:
      - 'builddir/meson-logs/*.txt'


pages:
  stage: deploy
  script:
    - meson setup
      -D gtk_doc=true
      -D man=true
      builddir
    - meson compile -C builddir polkit-1-doc:custom
    - rm -rf public && mkdir public
    - cp -r builddir/docs/polkit/html/* public
  artifacts:
    paths:
      - public
  rules:
    - if: $CI_COMMIT_TAG


workflow:
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
    - if: $CI_PIPELINE_SOURCE == 'push'