Skip to content

Commit

Permalink
CI: buildpackage workflow: documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
pajod committed Dec 15, 2023
1 parent 5f5b970 commit c995c7f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
name: buildpackage
# Goal: produce .deb files on Ubuntu >= 22.04 (jammy) or Debian >= 12 (bookworm/bullseye-backports)
# https://wiki.debian.org/Packaging
# https://www.debian.org/doc/debian-policy/
# https://www.debian.org/doc/packaging-manuals/python-policy/

# https://docs.github.com/articles/events-that-trigger-workflows
on:
push:
tags:
Expand All @@ -8,7 +14,7 @@ on:
paths:
- .github/workflows/ubuntu.yml
workflow_dispatch:
# allow manual trigger
# https://docs.github.com/articles/configuring-a-workflow#manually-running-a-workflow

permissions:
contents: read # to fetch code (actions/checkout)
Expand All @@ -17,15 +23,17 @@ env:
# note that some tools care only for the name, not the value
FORCE_COLOR: 1

# reduce metadata, unlike elsewhere, build artifacts should differ by content only
# reduce metadata. unlike elsewhere, build artifacts should differ by content only
SOURCE_DATE_EPOCH: 0

jobs:
lint:
name: buildpackage-${{ matrix.python-version }}
# https://docs.github.com/articles/virtual-environments-for-github-actions
runs-on: ubuntu-latest
strategy:
fail-fast: true
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix
matrix:
python-version: [ "os-py" ]
steps:
Expand Down

0 comments on commit c995c7f

Please sign in to comment.