From f8ad7dc984cf90cf9f1d0c42473767f430fee4cc Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Sat, 3 Dec 2022 15:48:42 +0100 Subject: [PATCH] Configure CI to run test, build package and publish release --- .woodpecker.yml | 70 ++++++++++++++++++++++++++++++++++++++++++++ build.sh | 62 +++++++++++++++++++++++++++++++++++++++ debian/compat | 1 + debian/control | 16 ++++++++++ debian/copyright | 20 +++++++++++++ debian/dirs | 1 + debian/install | 1 + debian/rules | 4 +++ debian/source/format | 1 + 9 files changed, 176 insertions(+) create mode 100644 .woodpecker.yml create mode 100755 build.sh create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/install create mode 100755 debian/rules create mode 100644 debian/source/format diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..37013ed --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,70 @@ +clone: + git: + image: woodpeckerci/plugin-git + tags: true + +pipeline: + test-pylint: + group: test + image: debian + commands: + - DEBIAN_FRONTEND=noninteractive apt-get -qq update < /dev/null > /dev/null + - DEBIAN_FRONTEND=noninteractive apt-get -qq -y install --no-install-recommends python3-requests pylint3 < /dev/null > /dev/null + - python3 -m pylint check_esphome_devices + + test-flake8: + group: test + image: pipelinecomponents/flake8 + commands: + - flake8 check_esphome_devices + + build: + image: brenard/debian-python-deb + when: + event: tag + commands: + - echo "$GPG_KEY"|base64 -d|gpg --import + - ./build.sh --quiet + secrets: [ maintainer_name, maintainer_email, gpg_key, debian_codename ] + + publish-dryrun: + group: publish + image: alpine + when: + event: tag + commands: + - ls dist/* dist/check-esphome-devices-*/check_esphome_devices + + publish-gitea: + group: publish + image: plugins/gitea-release + when: + event: tag + settings: + api_key: + from_secret: gitea_token + base_url: https://gitea.zionetrix.net + note: dist/release_notes.md + files: + - dist/check-esphome-devices-*/check_esphome_devices + - dist/*.deb + checksum: + - md5 + - sha512 + + publish-apt: + group: publish + image: brenard/aptly-publish + when: + event: tag + settings: + api_url: + from_secret: apt_api_url + api_username: + from_secret: apt_api_username + api_password: + from_secret: apt_api_password + repo_name: + from_secret: apt_repo_name + path: dist + source_name: check-esphome-devices diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..f060426 --- /dev/null +++ b/build.sh @@ -0,0 +1,62 @@ +#!/bin/bash + +QUIET_ARG="" +[ "$1" == "--quiet" ] && QUIET_ARG="--quiet" + +# Enter source directory +cd $( dirname $0 ) + +echo "Clean previous build..." +rm -fr dist + +echo "Detect version using git describe..." +VERSION="$( git describe --tags|sed 's/^[^0-9]*//' )" + +echo "Create building environemt..." +BDIR=dist/check-esphome-devices-$VERSION +mkdir -p $BDIR +[ -z "$QUIET_ARG" ] && RSYNC_ARG="-v" || RSYNC_ARG="" +rsync -a $RSYNC_ARG debian/ $BDIR/debian/ +cp check_esphome_devices $BDIR/ + +echo "Set VERSION=$VERSION in gitdch using sed..." +sed -i "s/^VERSION *=.*$/VERSION = '$VERSION'/" $BDIR/check_esphome_devices + +if [ -z "$DEBIAN_CODENAME" ] +then + echo "Retreive debian codename using lsb_release..." + DEBIAN_CODENAME=$( lsb_release -c -s ) +else + echo "Use debian codename from environment ($DEBIAN_CODENAME)" +fi + +echo "Generate debian changelog using gitdch..." +GITDCH_ARGS=('--verbose') +[ -n "$QUIET_ARG" ] && GITDCH_ARGS=('--warning') +if [ -n "$MAINTAINER_NAME" ] +then + echo "Use maintainer name from environment ($MAINTAINER_NAME)" + GITDCH_ARGS+=("--maintainer-name" "${MAINTAINER_NAME}") +fi +if [ -n "$MAINTAINER_EMAIL" ] +then + echo "Use maintainer email from environment ($MAINTAINER_EMAIL)" + GITDCH_ARGS+=("--maintainer-email" "$MAINTAINER_EMAIL") +fi +gitdch \ + --package-name check-esphome-devices \ + --version "${VERSION}" \ + --code-name $DEBIAN_CODENAME \ + --output $BDIR/debian/changelog \ + --release-notes dist/release_notes.md \ + "${GITDCH_ARGS[@]}" + +if [ -n "$MAINTAINER_NAME" -a -n "$MAINTAINER_EMAIL" ] +then + echo "Set Maintainer field in debian control file ($MAINTAINER_NAME <$MAINTAINER_EMAIL>)..." + sed -i "s/^Maintainer: .*$/Maintainer: $MAINTAINER_NAME <$MAINTAINER_EMAIL>/" $BDIR/debian/control +fi + +echo "Build debian package..." +cd $BDIR +dpkg-buildpackage diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +11 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..979e985 --- /dev/null +++ b/debian/control @@ -0,0 +1,16 @@ +Source: check-esphome-devices +Section: admin +Priority: optional +Maintainer: Debian Zionetrix - check-esphome-devices +Build-Depends: debhelper (>> 11.0.0) +Standards-Version: 3.9.6 + +Package: check-esphome-devices +Architecture: all +Depends: ${misc:Depends}, python3, python3-ldap +Description: Monitoring plugin to check ESPHome devices status + This Icinga/Nagios check plugin permit to check ESPHome devices status + using the ESPHome Dashboard API : + * check if device is reachable + * check if device upgrade is available + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..f1b44fb --- /dev/null +++ b/debian/copyright @@ -0,0 +1,20 @@ +This package was written by Benjamin Renard . + +Copyright (C) 2022 Benjamin Renard + +check-esphome-devices is licensed under the GNU general public license, version 3. + +check-esphome-devices is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation; either version 2, or (at your option) any later version. + +check-esphome-devices is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A +PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +check-esphome-devices; see the file COPYING. If not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian systems, a copy of the GNU General Public License is available in +/usr/share/common-licenses/GPL-3 as part of the base-files package. diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..b073cdc --- /dev/null +++ b/debian/dirs @@ -0,0 +1 @@ +usr/lib/nagios/plugins diff --git a/debian/install b/debian/install new file mode 100644 index 0000000..2c22ff7 --- /dev/null +++ b/debian/install @@ -0,0 +1 @@ +check_esphome_devices usr/lib/nagios/plugins diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..7451f59 --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f +#export DH_VERBOSE=1 +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..d3827e7 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +1.0