Skip to content

Commit

Permalink
build-jit 깨지던 문제 수정 (#29)
Browse files Browse the repository at this point in the history
* ci: specify working directory

* Use PyPy 7.3.10

* Use PyPy 7.3.9
  • Loading branch information
puzzlet committed Apr 1, 2024
1 parent 8251758 commit fb2593f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,14 @@ jobs:
- uses: actions/checkout@master
with:
repository: pypy/pypy
ref: release-pypy2.7-v7.3.13
ref: release-pypy2.7-v7.3.9
path: pypy
- name: Build
run: |
RPYTHON=pypy/pypy/rpython/bin/rpython make
export RPYTHON="pypy $GITHUB_WORKSPACE/pypy/rpython/bin/rpython"
cd $GITHUB_WORKSPACE
make
- name: Test with snippets
run: |
cd snippets && AHEUI=../rpaheui-c ./test.sh --disable logo integer
cd "$GITHUB_WORKSPACE/snippets"
AHEUI="$GITHUB_WORKSPACE/rpaheui-c" ./test.sh --disable logo integer

0 comments on commit fb2593f

Please sign in to comment.