1
0
Fork 0
mirror of synced 2024-06-18 18:34:51 +12:00
ArchiveBox/.github/workflows/debian.yml

56 lines
1.6 KiB
YAML
Raw Normal View History

name: Build Debian package
2020-11-28 23:44:37 +13:00
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
2020-11-28 23:48:45 +13:00
submodules: true
2020-11-28 23:44:37 +13:00
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.9
architecture: x64
2020-12-12 05:59:34 +13:00
- name: Install packaging dependencies
2020-11-28 23:44:37 +13:00
run: |
2020-12-12 05:52:07 +13:00
sudo apt install -y python3 python3-dev python3-pip python3-venv python3-all dh-python debhelper devscripts dput software-properties-common python3-distutils python3-setuptools python3-wheel python3-stdeb
2020-12-12 05:59:34 +13:00
pip3 install --upgrade pip setuptools wheel stdeb
2020-11-28 23:44:37 +13:00
2020-12-12 05:59:34 +13:00
- name: Build Debian/Apt sdist_dsc
2020-11-28 23:44:37 +13:00
run: |
2020-12-12 05:35:25 +13:00
python3 setup.py --command-packages=stdeb.command \
sdist_dsc
2020-12-12 05:59:34 +13:00
- name: Build Debian/Apt bdist_deb
run: |
2020-12-12 05:35:25 +13:00
python3 setup.py --command-packages=stdeb.command \
bdist_deb
2020-12-12 05:59:34 +13:00
- name: Install archivebox from deb
run: |
2020-11-28 23:44:37 +13:00
apt install deb_dist/archivebox*.deb
- name: Add some links to test
run: |
mkdir data && cd data
archivebox init
archivebox add 'https://example.com'
archivebox version
archivebox status
# TODO: push debian package to launchpad PPA
# - name: Push to launchpad
# run: |
2020-12-12 05:35:25 +13:00
# debsign -k "$PGP_KEY_ID" "deb_dist/archivebox_${VERSION}-${DEBIAN_VERSION}_source.changes"
2020-11-28 23:44:37 +13:00
# dput archivebox "deb_dist/archivebox_${VERSION}-${DEBIAN_VERSION}_source.changes"