File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -99,12 +99,14 @@ jobs:
99
99
100
100
# === Steps for Generated Files Check ===
101
101
- name : Build CPython for Generated Files Check
102
- if : matrix.task == 'generated-files'
102
+ # if: matrix.task == 'generated-files'
103
+ if : false
103
104
run : |
104
105
./configure --with-pydebug
105
106
make -j4 regen-all
106
107
- name : Check for changes in generated files
107
- if : matrix.task == 'generated-files'
108
+ # if: matrix.task == 'generated-files'
109
+ if : false
108
110
run : |
109
111
if ! git diff --quiet; then
110
112
echo "Generated files are not up to date. Please run 'make regen-all' and commit the changes."
@@ -113,7 +115,8 @@ jobs:
113
115
exit 1
114
116
fi
115
117
- name : Check exported libpython symbols
116
- if : matrix.task == 'generated-files'
118
+ # if: matrix.task == 'generated-files'
119
+ if : false
117
120
run : make smelly
118
121
119
122
# === Steps for Full Build and Test ===
You can’t perform that action at this time.
0 commit comments