78 lines
2.5 KiB
YAML
78 lines
2.5 KiB
YAML
name: Build Debian package
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
|
|
env:
|
|
DEB_BUILD_OPTIONS: nocheck
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 1
|
|
|
|
# - name: Set up Python
|
|
# uses: actions/setup-python@v1
|
|
# with:
|
|
# python-version: 3.9
|
|
# architecture: x64
|
|
|
|
- name: Install packaging dependencies
|
|
run: |
|
|
sudo echo "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe" >> /etc/apt/sources.list
|
|
sudo echo "deb-src http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe" >> /etc/apt/sources.list
|
|
sudo apt update
|
|
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
|
|
# pip3 install --upgrade pip setuptools wheel stdeb
|
|
|
|
- name: Build Debian/Apt sdist_dsc
|
|
run: |
|
|
rm -Rf deb_dist/*
|
|
python3 setup.py --command-packages=stdeb.command sdist_dsc
|
|
|
|
- name: Build Debian/Apt bdist_deb
|
|
run: |
|
|
python3 setup.py --command-packages=stdeb.command bdist_deb
|
|
|
|
- name: Install archivebox from deb
|
|
run: |
|
|
cd deb_dist/
|
|
sudo apt install python3-dateparser
|
|
sudo apt install python3-mypy-extensions
|
|
sudo apt install ripgrep
|
|
sudo apt install ./archivebox*.deb
|
|
|
|
- name: Add some links to test
|
|
run: |
|
|
mkdir data && cd data
|
|
archivebox init
|
|
archivebox add 'https://example.com'
|
|
archivebox version
|
|
archivebox status
|
|
|
|
# - name: Commit files
|
|
# run: |
|
|
# cd deb_dist/
|
|
# git config --local user.email "action@github.com"
|
|
# git config --local user.name "GitHub Action"
|
|
# git commit -m "Debian package autobuild" -a
|
|
|
|
# - name: Push changes
|
|
# uses: ad-m/github-push-action@master
|
|
# with:
|
|
# github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# repository: ArchiveBox/debian-archivebox
|
|
# branch: ${{ github.ref }}
|
|
# directory: deb_dist
|
|
|
|
# TODO: push debian package to launchpad PPA
|
|
# - name: Push to launchpad
|
|
# run: |
|
|
# debsign -k "$PGP_KEY_ID" "deb_dist/archivebox_${VERSION}-${DEBIAN_VERSION}_source.changes"
|
|
# dput archivebox "deb_dist/archivebox_${VERSION}-${DEBIAN_VERSION}_source.changes"
|