From 45c1812a65045457d068ac8cec15e740e41dde23 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Sat, 18 Sep 2021 09:56:50 +1000 Subject: Fix bad name of Debian CI build file. --- .builds/debian-11-sqlite.yml | 74 ++++++++++++++++++++++++++++++++++++++++++++ .builds/debian-11-sqlite.ypm | 74 -------------------------------------------- 2 files changed, 74 insertions(+), 74 deletions(-) create mode 100644 .builds/debian-11-sqlite.yml delete mode 100644 .builds/debian-11-sqlite.ypm diff --git a/.builds/debian-11-sqlite.yml b/.builds/debian-11-sqlite.yml new file mode 100644 index 00000000..60596a77 --- /dev/null +++ b/.builds/debian-11-sqlite.yml @@ -0,0 +1,74 @@ +image: debian/bullseye +packages: + # Install bootstrap and configure dependencies. + - automake + - nodejs + - npm + - python3-dev + - virtualenv + + # Install make and runtime dependencies. + - python3-lxml + - python3-pillow + + # Install test and docs dependencies. + - python3-pytest + - python3-pytest-xdist + - python3-snowballstemmer + - python3-sphinx + - python3-sphinxcontrib.devhelp + - python3-sphinxcontrib.qthelp + - python3-sphinxcontrib.websupport + - python3-webtest + + # Install audio dependencies. + - gstreamer1.0-libav + - gstreamer1.0-plugins-bad + - gstreamer1.0-plugins-base + - gstreamer1.0-plugins-good + - gstreamer1.0-plugins-ugly + - python3-gst-1.0 + - python3-numpy + + # Install video dependencies. + - gir1.2-gst-plugins-base-1.0 + - gir1.2-gstreamer-1.0 + - gstreamer1.0-tools + - python3-gi + + # 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 + VIRTUALENV_FLAGS='--system-site-packages' ./configure + make + + # Install additional Sphinx dependencies not in Debian. + ./bin/pip install sphinxcontrib-applehelp sphinxcontrib-htmlhelp sphinxcontrib-jsmath + + # Install raw image library from PyPI as not available in Debian 10. + ./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 + diff --git a/.builds/debian-11-sqlite.ypm b/.builds/debian-11-sqlite.ypm deleted file mode 100644 index 60596a77..00000000 --- a/.builds/debian-11-sqlite.ypm +++ /dev/null @@ -1,74 +0,0 @@ -image: debian/bullseye -packages: - # Install bootstrap and configure dependencies. - - automake - - nodejs - - npm - - python3-dev - - virtualenv - - # Install make and runtime dependencies. - - python3-lxml - - python3-pillow - - # Install test and docs dependencies. - - python3-pytest - - python3-pytest-xdist - - python3-snowballstemmer - - python3-sphinx - - python3-sphinxcontrib.devhelp - - python3-sphinxcontrib.qthelp - - python3-sphinxcontrib.websupport - - python3-webtest - - # Install audio dependencies. - - gstreamer1.0-libav - - gstreamer1.0-plugins-bad - - gstreamer1.0-plugins-base - - gstreamer1.0-plugins-good - - gstreamer1.0-plugins-ugly - - python3-gst-1.0 - - python3-numpy - - # Install video dependencies. - - gir1.2-gst-plugins-base-1.0 - - gir1.2-gstreamer-1.0 - - gstreamer1.0-tools - - python3-gi - - # 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 - VIRTUALENV_FLAGS='--system-site-packages' ./configure - make - - # Install additional Sphinx dependencies not in Debian. - ./bin/pip install sphinxcontrib-applehelp sphinxcontrib-htmlhelp sphinxcontrib-jsmath - - # Install raw image library from PyPI as not available in Debian 10. - ./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 - -- cgit v1.2.3