summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: dc338f6508f879cf54ee4cfc9dcf4be6628fe329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
build-fedora:
  image: fedora:latest
  before_script:
    - dnf install -y git autoconf automake make gettext itstool libxslt yelp-tools
  script:
    - ./check.sh
    - ./autogen.sh ITSTOOL="/usr/bin/itstool --strict"
    - make
    - make check

codespell:
  image: registry.gitlab.gnome.org/gnome/gnome-user-docs:latest
  when: manual
  allow_failure: true
  script:
    - codespell -S "*.png,*.po,.git,*.jpg,*.webm" -f --skip="*.po,./NEWS,*/Makefile*"