aboutsummaryrefslogtreecommitdiffstats
path: root/.builds/fedora-33-sqlite.yml
blob: 577fb972ff06ebe3783e7041a9ba5d4c8f2d3055 (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
image: fedora/33
packages:
  # Install bootstrap and configure dependencies.
  - automake
  # - gcc
  # - make
  - python3-devel
  - virtualenv

  # Install make and runtime dependencies.
  # - findutils
  - python3-lxml
  - python3-pillow
  - libffi-devel
  # - which

  # Install test and docs dependencies.
  - python3-pytest
  - python3-pytest-xdist
  - python3-snowballstemmer
  - python3-sphinx
  - python3-webtest

  # Install audio dependencies.
  - gstreamer1-plugins-base
  - gstreamer1-plugins-bad-free
  - gstreamer1-plugins-good
  - gstreamer1-plugins-ugly-free
  - python3-numpy

  # Install video dependencies.
  - python3-gobject
  - python3-gstreamer1
  -  gstreamer1-plugin-openh264

  # # Install raw image dependencies.
  # - libexiv2-dev
  # - libboost-python-dev

  # # Install document (PDF-only) dependencies.
  # - poppler-utils

  # Install LDAP depedencies.
  - python3-ldap

  # Install OpenID dependencies.
  - python3-openid

tasks:
  - core: |
      cd mediagoblin
      git show --oneline --no-patch
      ./bootstrap.sh
      ./configure
      make

      # # Install raw image library from PyPI as not available in Debian 11.
      # ./bin/pip install py3exiv2

      # Confirm our packages version for later troubleshooting.
      ./bin/python -m pip freeze

      # Run the tests, explicitly listing out skipped tests.
      ./bin/python -m pytest -rs ./mediagoblin/tests --boxed

      # Build the documentation.
      cd docs && make html