File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Diff 2 releases using diffocope.
2
+ diff a b :
3
+ diffoscope \
4
+ - -html build/ diff.html \
5
+ - -exclude ' python/build/**' \
6
+ - -exclude-command ' ^readelf.*' \
7
+ - -exclude-command ' ^xxd.*' \
8
+ - -exclude-command ' ^objdump.*' \
9
+ - -exclude-command ' ^strings.*' \
10
+ - -max-report-size 9999999999 \
11
+ - -max-page-size 999999999 \
12
+ - -max-diff-block-lines 100000 \
13
+ - -max-page-diff-block-lines 100000 \
14
+ {{ a }} {{ b }}
15
+
16
+ diff-python-json a b :
17
+ diffoscope \
18
+ - -html build/ diff.html \
19
+ - -exclude ' python/build/**' \
20
+ - -exclude ' python/install/**' \
21
+ - -max-diff-block-lines 100000 \
22
+ - -max-page-diff-block-lines 100000 \
23
+ {{ a }} {{ b }}
24
+
1
25
# Download release artifacts from GitHub Actions
2
26
release-download-distributions token commit :
3
27
mkdir -p dist
@@ -62,3 +86,4 @@ release token commit tag:
62
86
datetime =$(ls dist/ cpython-3.10 .*-x86 _64 -unknown-linux-gnu-install_only-*.tar.gz | awk -F- ' {print $8}' | awk -F. ' {print $1}' )
63
87
just release-upload-distributions {{ token}} ${datetime } {{ tag}}
64
88
just release-set-latest-release {{ tag}}
89
+
You can’t perform that action at this time.
0 commit comments