Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 7ba7cd6

Browse files
committed
feat(ci): emit warning annotations on ported files (#17867)
1 parent 1068fdd commit 7ba7cd6

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Add mathlib4 porting warnings
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build:
8+
name: Check for modifications to ported files
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: install Python
14+
uses: actions/setup-python@v3
15+
with:
16+
python-version: 3.8
17+
18+
- name: install latest mathlibtools
19+
run: |
20+
pip install git+https://github.com/leanprover-community/mathlib-tools
21+
22+
# TODO: is this really faster than just calling git from python?
23+
- name: Get changed files
24+
id: changed-files
25+
uses: tj-actions/changed-files@v34
26+
27+
- name: run the script
28+
run: |
29+
python scripts/detect_ported_files.py ${{ steps.changed-files.outputs.all_changed_files }}

scripts/detect_ported_files.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# this script is only intended to be run by CI
2+
import sys
3+
from pathlib import Path
4+
5+
from mathlibtools.file_status import PortStatus, FileStatus
6+
7+
status = PortStatus.deserialize_old()
8+
9+
src_path = Path(__file__).parent.parent / 'src'
10+
11+
def encode_msg_text_for_github(msg):
12+
# even though this is probably url quoting, we match the implementation at
13+
# https://github.com/actions/toolkit/blob/af821474235d3c5e1f49cee7c6cf636abb0874c4/packages/core/src/command.ts#L36-L94
14+
return msg.replace('%', '%25').replace('\r', '%0D').replace('\n', '%0A')
15+
16+
def fname_for(import_path: str) -> Path:
17+
return src_path / Path(*import_path.split('.')).with_suffix('.lean')
18+
19+
if __name__ == '__main__':
20+
files = [Path(f) for f in sys.argv[1:]]
21+
for iname, f_status in status.file_statuses.items():
22+
if f_status.ported:
23+
fname = fname_for(iname)
24+
if fname in files:
25+
msg = ("Changes to this file will need to be ported to mathlib 4!\n"
26+
"Please consider retracting the changes to this file unless you are willing "
27+
"to immediately forward-port them." )
28+
print(f"::warning file={fname},line=1,col=1::{encode_msg_text_for_github(msg)}")

0 commit comments

Comments
 (0)