Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Check Patch Audit Compliance #167

Merged
merged 5 commits into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,14 @@ jobs:
AUDIT_REPO_LOCATION: ${{ github.workspace }}/botan
BASIC_GH_TOKEN: ${{ github.token }}

- name: Check Patch Audit Status
working-directory: source/docs/audit_report
run: poetry run python3 -m genaudit.cli verify_audits changes
env:
AUDIT_CACHE_LOCATION: ${{ github.workspace }}/audit_generator_cache
AUDIT_REPO_LOCATION: ${{ github.workspace }}/botan
BASIC_GH_TOKEN: ${{ github.token }}

- name: Build Document
working-directory: source/docs/audit_report
run: poetry run make latexpdf
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Weiterentwicklung der Kryptobibliothek Botan".

This monorepo contains documents (in `/docs`) as well as auxiliary helper
scripts (in `/tools`) and some common resources (in `/resources`). The monorepo
is configured in a global configuration file (in `/config/botan.env`). Internal
is configured in a global configuration directory (in `/config`). Internal
documentation and checklists are located in `/internal`.

Most documents come with a `Makefile` to build them as PDF, HTML or other
Expand Down
15 changes: 15 additions & 0 deletions config/auditors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This file contains the list of auditors along with their GitHub handles.
# Authorship, approval or auditor-annotation of patches in the Audit Report
# document are considered to be authorative in the CI.

auditors:
- name: Fabian Albert
github: FAlbertDev
- name: René Fischer
github: securitykernel
- name: Philippe Lieser
github: lieser
- name: René Meusel
github: reneme
- name: Amos Treiber
github: atreiber94
32 changes: 22 additions & 10 deletions docs/architecture/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 22 additions & 10 deletions docs/audit_method/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions docs/audit_report/changes/topics/chores.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ patches:
# Don't inline Null_RNG::fill_bytes_with_input (Jack Lloyd)
- commit: 723fa3a260b9be10a96223c71c2b8f44631a1c5e # https://github.com/randombit/botan/commit/723fa3a260b9be10a96223c71c2b8f44631a1c5e
classification: info
auditer: reneme

# Remove abort call accidentally left over from debugging (Jack Lloyd)
- commit: 6117553c9d7652aaa050ac931447ccdefa5f658f # https://github.com/randombit/botan/commit/6117553c9d7652aaa050ac931447ccdefa5f658f
Expand Down
25 changes: 14 additions & 11 deletions docs/audit_report/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading