feat: migrate from woodpecker to forgejo actions
This commit is contained in:
parent
abd70b9cc6
commit
1b45a21210
6 changed files with 93 additions and 94 deletions
52
.forgejo/workflows/package.yml
Normal file
52
.forgejo/workflows/package.yml
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "v*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
build_wheel:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
- name: Build Python wheel
|
||||||
|
run: |
|
||||||
|
apt update; apt install -y python3-pip
|
||||||
|
pip3 install --break-system-packages -e .[test]
|
||||||
|
python3 setup.py egg_info bdist_wheel
|
||||||
|
- uses: https://git.kabelsalat.ch/s3lph/forgejo-action-wheel-package-upload@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.API_USERNAME }}
|
||||||
|
password: ${{ secrets.API_PASSWORD }}
|
||||||
|
|
||||||
|
build_debian:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
- name: Prepare package
|
||||||
|
run: |
|
||||||
|
# The Python package name provided by the python3-magic Debian package is "python-magic" rather than "file-magic".
|
||||||
|
sed -re 's/file-magic/python-magic/' -i setup.py
|
||||||
|
cp -r static/ package/debian/matemat/usr/lib/matemat/static/
|
||||||
|
cp -r templates/ package/debian/matemat/usr/lib/matemat/templates/
|
||||||
|
mkdir -p package/debian/matemat/var/lib/matemat/themes/
|
||||||
|
cp -r themes/ package/debian/matemat/usr/lib/matemat/themes/
|
||||||
|
|
||||||
|
- uses: https://git.kabelsalat.ch/s3lph/forgejo-action-python-debian-package@v5
|
||||||
|
with:
|
||||||
|
python_module: matemat
|
||||||
|
package_name: matemat
|
||||||
|
package_root: package/debian/matemat
|
||||||
|
package_output_path: package/debian
|
||||||
|
pre_package_hook: |
|
||||||
|
mv matemat/usr/bin/matemat matemat/usr/lib/matemat/matemat
|
||||||
|
rm -rf matemat/usr/bin
|
||||||
|
chmod +x matemat/usr/lib/matemat/matemat
|
||||||
|
|
||||||
|
- uses: https://git.kabelsalat.ch/s3lph/forgejo-action-debian-package-upload@v2
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.API_USERNAME }}
|
||||||
|
password: ${{ secrets.API_PASSWORD }}
|
||||||
|
deb: "package/debian/*.deb"
|
27
.forgejo/workflows/test.yml
Normal file
27
.forgejo/workflows/test.yml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
on: push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
test:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
- name: test
|
||||||
|
run: |
|
||||||
|
apt update; apt install --yes python3-pip
|
||||||
|
pip3 install --break-system-packages -e .[test]
|
||||||
|
python3 -m coverage run --rcfile=setup.cfg -m unittest discover matemat
|
||||||
|
python3 -m coverage combine
|
||||||
|
python3 -m coverage report --rcfile=setup.cfg
|
||||||
|
|
||||||
|
codestyle:
|
||||||
|
runs-on: docker
|
||||||
|
steps:
|
||||||
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
- name: codestyle
|
||||||
|
run: |
|
||||||
|
apt update; apt install --yes python3-pip
|
||||||
|
pip3 install --break-system-packages -e .[test]
|
||||||
|
pycodestyle matemat
|
|
@ -1,91 +0,0 @@
|
||||||
---
|
|
||||||
|
|
||||||
steps:
|
|
||||||
|
|
||||||
test:
|
|
||||||
image: python:3.11-bookworm
|
|
||||||
group: test
|
|
||||||
commands:
|
|
||||||
- pip3 install -e .[test]
|
|
||||||
- python3 -m coverage run --rcfile=setup.cfg -m unittest discover matemat
|
|
||||||
- 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 matemat
|
|
||||||
|
|
||||||
build_wheel:
|
|
||||||
image: python:3.11-bookworm
|
|
||||||
group: package
|
|
||||||
when:
|
|
||||||
- event: tag
|
|
||||||
secrets:
|
|
||||||
- GITEA_API_REPOSITORY_PYPI
|
|
||||||
- GITEA_API_USERNAME
|
|
||||||
- GITEA_API_PASSWORD
|
|
||||||
commands:
|
|
||||||
- pip3 install -e .[test]
|
|
||||||
- python3 setup.py egg_info bdist_wheel
|
|
||||||
- |
|
|
||||||
cat > ~/.pypirc <<EOF
|
|
||||||
[distutils]
|
|
||||||
index-servers = gitea
|
|
||||||
|
|
||||||
[gitea]
|
|
||||||
repository = $${GITEA_API_REPOSITORY_PYPI}
|
|
||||||
username = $${GITEA_API_USERNAME}
|
|
||||||
password = $${GITEA_API_PASSWORD}
|
|
||||||
EOF
|
|
||||||
- python3 -m twine upload --repository gitea dist/*.whl
|
|
||||||
|
|
||||||
build_debian:
|
|
||||||
image: python:3.11-bookworm
|
|
||||||
group: package
|
|
||||||
when:
|
|
||||||
- event: tag
|
|
||||||
secrets:
|
|
||||||
- GITEA_API_REPOSITORY_DEB
|
|
||||||
- GITEA_API_USERNAME
|
|
||||||
- GITEA_API_PASSWORD
|
|
||||||
commands:
|
|
||||||
- apt update; apt install -y lintian rsync sudo curl
|
|
||||||
- export MATEMAT_VERSION=$(python -c 'import matemat; print(matemat.__version__)')
|
|
||||||
# The Python package name provided by the python3-magic Debian package is "python-magic" rather than "file-magic".
|
|
||||||
- sed -re 's/file-magic/python-magic/' -i setup.py
|
|
||||||
- |
|
|
||||||
(for version in "$(cat CHANGELOG.md | grep '<!-- BEGIN CHANGES' | cut -d ' ' -f 4)"; do
|
|
||||||
echo "matemat ($${version}-1) stable; urgency=medium\n"
|
|
||||||
cat CHANGELOG.md | grep -A 1000 "<"'!'"-- BEGIN CHANGES $${version} -->" | grep -B 1000 "<"'!'"-- END CHANGES $${version} -->" | tail -n +2 | head -n -1 | sed -re 's/^-/ */g'
|
|
||||||
echo "\n -- s3lph@kabelsalat.ch $(date -R)\n"
|
|
||||||
done) > package/debian/matemat/usr/share/doc/matemat/changelog
|
|
||||||
- gzip -9n package/debian/matemat/usr/share/doc/matemat/changelog
|
|
||||||
- cp -r static/ package/debian/matemat/usr/lib/matemat/static/
|
|
||||||
- cp -r templates/ package/debian/matemat/usr/lib/matemat/templates/
|
|
||||||
- mkdir -p package/debian/matemat/var/lib/matemat/themes/
|
|
||||||
- cp -r themes/ package/debian/matemat/usr/lib/matemat/themes/
|
|
||||||
- python3 setup.py egg_info install --root=package/debian/matemat/ --prefix=/usr --optimize=1
|
|
||||||
- cd package/debian
|
|
||||||
- mkdir -p matemat/usr/lib/python3/dist-packages/
|
|
||||||
- rsync -a matemat/usr/lib/python3.11/site-packages/ matemat/usr/lib/python3/dist-packages/
|
|
||||||
- rm -rf matemat/usr/lib/python3.11/
|
|
||||||
- find matemat/usr/lib/python3/dist-packages -name __pycache__ -exec rm -r {} \; 2>/dev/null || true
|
|
||||||
- find matemat/usr/lib/python3/dist-packages -name '*.pyc' -exec rm {} \;
|
|
||||||
- mv matemat/usr/bin/matemat matemat/usr/lib/matemat/matemat
|
|
||||||
- rm -rf matemat/usr/bin
|
|
||||||
- sed -re 's$#!/usr/local/bin/python3$#!/usr/bin/python3$' -i matemat/usr/lib/matemat/matemat
|
|
||||||
- find matemat -type f -exec chmod 0644 {} \;
|
|
||||||
- find matemat -type d -exec chmod 755 {} \;
|
|
||||||
- chmod +x matemat/usr/lib/matemat/matemat matemat/DEBIAN/postinst matemat/DEBIAN/prerm matemat/DEBIAN/postrm
|
|
||||||
- sed -re "s/__VERSION__/$${MATEMAT_VERSION}-1/g" -i matemat/DEBIAN/control
|
|
||||||
- dpkg-deb --build matemat
|
|
||||||
- mv matemat.deb "matemat_$${MATEMAT_VERSION}-1_all.deb"
|
|
||||||
- sudo -u nobody lintian "matemat_$${MATEMAT_VERSION}-1_all.deb" || true
|
|
||||||
- >-
|
|
||||||
curl
|
|
||||||
--user "$${GITEA_API_USERNAME}:$${GITEA_API_PASSWORD}"
|
|
||||||
--upload-file "matemat_$${MATEMAT_VERSION}-1_all.deb"
|
|
||||||
$${GITEA_API_REPOSITORY_DEB}
|
|
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,18 @@
|
||||||
# Matemat Changelog
|
# Matemat Changelog
|
||||||
|
|
||||||
|
<!-- BEGIN RELEASE v0.3.8 -->
|
||||||
|
## Version 0.3.8
|
||||||
|
|
||||||
|
Migrate from Woodpecker CI to Forgejo Actions
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
|
||||||
|
<!-- BEGIN CHANGES 0.3.8 -->
|
||||||
|
- Migrate from Woodpecker CI to Forgejo Actions
|
||||||
|
<!-- END CHANGES 0.3.8 -->
|
||||||
|
|
||||||
|
<!-- END RELEASE v0.3.8 -->
|
||||||
|
|
||||||
<!-- BEGIN RELEASE v0.3.7 -->
|
<!-- BEGIN RELEASE v0.3.7 -->
|
||||||
## Version 0.3.7
|
## Version 0.3.7
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# Matemat
|
# Matemat
|
||||||
|
|
||||||
[![status-badge](https://woodpecker.kabelsalat.ch/api/badges/80/status.svg)](https://woodpecker.kabelsalat.ch/repos/80)
|
|
||||||
|
|
||||||
A web service for automated stock-keeping of a soda machine written in Python.
|
A web service for automated stock-keeping of a soda machine written in Python.
|
||||||
It provides a touch-input-friendly user interface (as most input happens through the
|
It provides a touch-input-friendly user interface (as most input happens through the
|
||||||
soda machine's touch screen).
|
soda machine's touch screen).
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
|
|
||||||
__version__ = '0.3.7'
|
__version__ = '0.3.8'
|
||||||
|
|
Loading…
Reference in a new issue