ArchiveBox/.github/workflows/pip.yml

79 lines
2.1 KiB
YAML
Raw Normal View History

2021-01-20 19:13:53 -05:00
name: Build Pip package
2020-11-28 05:44:37 -05:00
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-22.04
2020-11-28 05:44:37 -05:00
2023-11-03 22:12:19 -04:00
permissions:
id-token: write
2020-11-28 05:44:37 -05:00
steps:
2023-11-03 22:12:19 -04:00
- uses: actions/checkout@v4
2020-11-28 05:44:37 -05:00
with:
2020-11-28 05:48:45 -05:00
submodules: true
2020-11-28 05:44:37 -05:00
fetch-depth: 1
- name: Set up Python
2024-01-04 22:02:46 -05:00
uses: actions/setup-python@v5
2020-11-28 05:44:37 -05:00
with:
2024-01-04 22:02:46 -05:00
python-version: '3.11'
2020-11-28 05:44:37 -05:00
architecture: x64
2024-01-04 21:51:59 -05:00
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
2024-01-04 22:02:46 -05:00
packages: ripgrep build-essential python3-dev python3-setuptools libssl-dev libldap2-dev libsasl2-dev zlib1g-dev libatomic1 gnupg2 curl wget python3-ldap python3-msgpack python3-mutagen python3-regex python3-pycryptodome procps
2024-01-04 21:51:59 -05:00
version: 1.0
2023-11-03 22:12:19 -04:00
- uses: pdm-project/setup-pdm@v3
2024-01-04 22:20:03 -05:00
with:
python-version: '3.11'
cache: true
2023-11-03 22:12:19 -04:00
- name: Install dependencies
2024-01-12 08:25:18 -05:00
run: pdm install --fail-fast --no-lock --dev --group=':all' --no-self
2023-11-03 22:12:19 -04:00
- name: Build package
2020-11-28 05:44:37 -05:00
run: |
2023-11-03 22:12:19 -04:00
pdm build
- name: Install from build
run: pip install ./dist/archivebox-*.whl
2020-11-28 05:44:37 -05:00
- name: Add some links to test
run: |
mkdir data && cd data
archivebox init
archivebox add 'https://example.com'
archivebox version
archivebox status
2024-01-04 22:23:26 -05:00
#- name: Publish package distributions to PyPI
# run: pdm publish --no-build
2023-11-03 22:12:19 -04:00
2021-04-13 03:59:44 -04:00
# - name: Push build to PyPI
# run: |
# cd pip_dist/
# python3 -m twine upload --repository testpypi pip_dist/*.{whl,tar.gz}
# python3 -m twine upload --repository pypi pip_dist/*.{whl,tar.gz}
# - name: Commit built package
# run: |
# cd pip_dist/
# git config --local user.email "action@github.com"
# git config --local user.name "GitHub Action"
# git commit -m "Pip package autobuild" -a
# - name: Push build to Github
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# repository: ArchiveBox/pip-archivebox
# branch: ${{ github.ref }}
# directory: pip_dist