Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
savannahostrowski committed Jan 10, 2025
1 parent d707ee2 commit ce2740e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,17 @@ jobs:

- name: List downloaded artifacts
run: |
ls -la artifacts
ls -la artifacts/*
# get the type of the file
file_type=$(file artifacts/*.patch)
- name: Aggregate stencil patches
run: |
aggregated_patch="aggregated_jit_stencils.patch"
touch $aggregated_patch
for file in artifacts/**/*.patch; do
for file in artifacts/*/*.patch; do
echo "Applying $file"
patch -p2 < $file || echo "Failed to apply $file"
done
Expand All @@ -188,9 +192,6 @@ jobs:
name: aggregated-jit-stencils
path: aggregated_jit_stencils.patch




# jit-with-disabled-gil:
# name: Free-Threaded (Debug)
# needs: interpreter
Expand Down

0 comments on commit ce2740e

Please sign in to comment.