8000 gh-119146: Update `paths` in `jit.yml` by savannahostrowski · Pull Request #119147 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-119146: Update paths in jit.yml #119147

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

Merged
merged 7 commits into from
May 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
update paths/
  • Loading branch information
savannahostrowski committed May 18, 2024
commit 8a104a7253da847d42de2029fdb12533026be936
14 changes: 4 additions & 10 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,16 @@ name: JIT
on:
pull_request:
paths:
- '**jit**'
- '**jit**.c'
- '**jit**.py'
- 'Python/bytecodes.c'
- 'Python/optimizer*.c'
paths-ignore:
- 'Tools/jit/README.md'
- 'Tools/jit/mypy.ini'
- 'Python/perf_jit_trampoline.c'
push:
paths:
- '**jit**'
- '**jit**.c'
- '**jit**.py'
- 'Python/bytecodes.c'
- 'Python/optimizer*.c'
paths-ignore:
- 'Tools/jit/README.md'
- 'Tools/jit/mypy.ini'
- 'Python/perf_jit_trampoline.c'
workflow_dispatch:

permissions:
Expand Down
2 changes: 2 additions & 0 deletions Tools/jit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ The JIT Compiler

This version of CPython can be built with an experimental just-in-time compiler. While most everything you already know about building and using CPython is unchanged, you will probably need to install a compatible version of LLVM first.

TEST

## Installing LLVM

The JIT compiler does not require end users to install any third-party dependencies, but part of it must be *built* using LLVM[^why-llvm]. You are *not* required to build the rest of CPython using LLVM, or even the same version of LLVM (in fact, this is uncommon).
Expand Down
0