--- pipeline: test: image: python:3.11-bookworm group: test commands: - pip3 install -e .[test] - python3 -m coverage run --rcfile=setup.cfg -m unittest discover tlsrpt_exporter - python3 -m coverage combine - python3 -m coverage report --rcfile=setup.cfg codestyle: image: python:3.11-bookworm group: test commands: - pip3 install -e .[test] - pycodestyle tlsrpt_exporter build_wheel: image: python:3.11-bookworm group: package commands: - python3 setup.py egg_info bdist_wheel - mkdir -p publish - mv dist/*whl publish - sha256sum publish/*.whl >> publish/SHA256SUMS build_debian: image: python:3.11-bookworm group: package environment: - PACKAGE_AUTHOR=s3lph@kabelsalat.ch commands: - apt update; apt install -y lintian rsync sudo - export EXPORTER_VERSION=$(python3 -c 'import tlsrpt_exporter; print(tlsrpt_exporter.__version__)') - echo -n > package/debian/prometheus-tlsrpt-exporter/usr/share/doc/prometheus-tlsrpt-exporter/changelog - | for version in "$(cat CHANGELOG.md | grep '" | grep -B 1000 "<"'!'"-- END CHANGES ${version} -->" | tail -n +2 | head -n -1 | sed -re 's/^-/ */g' >> package/debian/prometheus-tlsrpt-exporter/usr/share/doc/prometheus-tlsrpt-exporter/changelog echo -e "\n -- ${PACKAGE_AUTHOR} $(date -R)\n" >> package/debian/prometheus-tlsrpt-exporter/usr/share/doc/prometheus-tlsrpt-exporter/changelog done - gzip -9n package/debian/prometheus-tlsrpt-exporter/usr/share/doc/prometheus-tlsrpt-exporter/changelog - mkdir -p package/debian/prometheus-tlsrpt-exporter/usr/share/prometheus-tlsrpt-exporter - cp -r templates/ package/debian/prometheus-tlsrpt-exporter/usr/share/prometheus-tlsrpt-exporter/templates/ - python3 setup.py egg_info install --root=package/debian/prometheus-tlsrpt-exporter/ --prefix=/usr --optimize=1 - cd package/debian - mkdir -p prometheus-tlsrpt-exporter/usr/lib/python3/dist-packages/ - rsync -a prometheus-tlsrpt-exporter/usr/lib/python3.11/site-packages/ prometheus-tlsrpt-exporter/usr/lib/python3/dist-packages/ - rm -rf prometheus-tlsrpt-exporter/usr/lib/python3.11/ - find prometheus-tlsrpt-exporter/usr/lib/python3/dist-packages -name __pycache__ -exec rm -r {} \; 2>/dev/null || true - find prometheus-tlsrpt-exporter/usr/lib/python3/dist-packages -name '*.pyc' -exec rm {} \; - sed -re 's$#!/usr/local/bin/python3$#!/usr/bin/python3$' -i prometheus-tlsrpt-exporter/usr/bin/prometheus-tlsrpt-exporter - find prometheus-tlsrpt-exporter -type f -exec chmod 0644 {} \; - find prometheus-tlsrpt-exporter -type d -exec chmod 755 {} \; - chmod +x prometheus-tlsrpt-exporter/usr/bin/prometheus-tlsrpt-exporter prometheus-tlsrpt-exporter/DEBIAN/postinst prometheus-tlsrpt-exporter/DEBIAN/prerm - sed -re "s/__VERSION__/$${EXPORTER_VERSION}-1/g" -i prometheus-tlsrpt-exporter/DEBIAN/control - dpkg-deb --build prometheus-tlsrpt-exporter - cd ../.. - mkdir -p publish - mv package/debian/prometheus-tlsrpt-exporter.deb "publish/prometheus-tlsrpt-exporter_$${EXPORTER_VERSION}-1_all.deb" - sudo -u nobody lintian "publish/prometheus-tlsrpt-exporter_$${EXPORTER_VERSION}-1_all.deb" || true - sha256sum "publish/prometheus-tlsrpt-exporter_$${EXPORTER_VERSION}-1_all.deb" >> publish/SHA256SUMS upload: image: woodpeckerci/plugin-s3 group: upload secrets: - MINIO_ACCESS_KEY - MINIO_SECRET_KEY - MINIO_ENDPOINT - MINIO_BUCKET settings: endpoint: from_secret: MINIO_ENDPOINT bucket: from_secret: MINIO_BUCKET access_key: from_secret: MINIO_ACCESS_KEY secret_key: from_secret: MINIO_SECRET_KEY source: publish/* target: /artifacts path_style: true