Skip to content

Commit

Permalink
Revert the CI changes and user-facing echo
Browse files Browse the repository at this point in the history
  • Loading branch information
hroncok committed Aug 5, 2024
1 parent e21a156 commit c41b712
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 20 deletions.
20 changes: 1 addition & 19 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,27 +32,9 @@ jobs:
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- name: Configure tier two interpreter
run: |
./configure --enable-experimental-jit=interpreter --with-pydebug
- name: Regen JIT
run: |
make regen-jit
- name: Check for changes
run: |
git add -u
changes=$(git status --porcelain)
# Check for changes in regenerated files
if test -n "$changes"; then
echo "Generated files not up to date."
echo "Perhaps you forgot to run make regen-jit. ;)"
echo "$changes"
echo ""
git diff --staged || true
exit 1
fi
- name: Build tier two interpreter
run: |
./configure --enable-experimental-jit=interpreter --with-pydebug
make all --jobs 4
- name: Test tier two interpreter
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -1668,7 +1668,7 @@ regen-all: regen-cases regen-typeslots \
regen-test-levenshtein regen-global-objects
@echo
@echo "Note: make regen-stdlib-module-names, make regen-limited-abi, "
@echo "make regen-configure, make regen-sbom, make regen-jit, and make regen-unicodedata should be run manually"
@echo "make regen-configure, make regen-sbom, and make regen-unicodedata should be run manually"

############################################################################
# Special rules for object files
Expand Down

0 comments on commit c41b712

Please sign in to comment.