summaryrefslogtreecommitdiff
path: root/.gitlab-ci/test-msys2-meson.sh
blob: 2fe3d6e0d0fe0183b2aac9244cca8e9467384c2e (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
#!/bin/bash

set -e

pacman --noconfirm -Suy

pacman --noconfirm -S --needed \
    git \
    base-devel \
    ${MINGW_PACKAGE_PREFIX}-toolchain \
    ${MINGW_PACKAGE_PREFIX}-ccache \
    ${MINGW_PACKAGE_PREFIX}-meson \
    ${MINGW_PACKAGE_PREFIX}-python3 \
    ${MINGW_PACKAGE_PREFIX}-python3-pip \
    ${MINGW_PACKAGE_PREFIX}-python3-mako \
    ${MINGW_PACKAGE_PREFIX}-python3-markdown \
    ${MINGW_PACKAGE_PREFIX}-libffi \
    ${MINGW_PACKAGE_PREFIX}-pkg-config \
    ${MINGW_PACKAGE_PREFIX}-cairo \
    ${MINGW_PACKAGE_PREFIX}-pcre2 \
    ${MINGW_PACKAGE_PREFIX}-zlib \
    ${MINGW_PACKAGE_PREFIX}-gettext

export CCACHE_BASEDIR="${CI_PROJECT_DIR}"
export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"

pip3 install --upgrade --user meson==0.60 flake8 mypy==0.931 types-Markdown
export PATH="$HOME/.local/bin:$PATH"

meson setup \
        -Dwerror=true \
        -Dglib:werror=false \
        -Dcairo=enabled \
        -Ddoctool=enabled \
        --buildtype debug \
        _build

meson compile -C _build

meson test \
        --print-errorlogs \
        --suite=gobject-introspection \
        --no-suite=glib \
        -C _build

python3 -m flake8 --count
python3 -m mypy _build