Skip to content

Commit

Permalink
LLVM
Browse files Browse the repository at this point in the history
  • Loading branch information
diegorusso committed Nov 29, 2024
1 parent 8469373 commit 4c8e4db
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/jit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ jobs:
- name: Native Windows
if: runner.os == 'Windows' && matrix.arch != 'ARM64'
run: |
choco install llvm --allow-downgrade --no-progress --version $LLVM.1.0
choco install llvm --allow-downgrade --no-progress --version ${{ env.LLVM }}.1.0
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.arch }}
./PCbuild/rt.bat ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.arch }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
# No tests (yet):
- name: Emulated Windows
if: runner.os == 'Windows' && matrix.arch == 'ARM64'
run: |
choco install llvm --allow-downgrade --no-progress --version $LLVM.1.0
choco install llvm --allow-downgrade --no-progress --version ${{ env.LLVM }}.1.0
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.arch }}
jit-mac:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
run: |
brew update
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
brew install llvm@$LLVM
brew install llvm@${{ env.LLVM }}
export SDKROOT="$(xcrun --show-sdk-path)"
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '' }}
make all --jobs 4
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:

- name: Native Linux
run: |
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh $LLVM
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ env.LLVM }}
export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '' }}
make all --jobs 4
Expand All @@ -162,7 +162,7 @@ jobs:
# python-version: '3.11'
# - name: Build with JIT enabled and GIL disabled
# run: |
# sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh $LLVM
# sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ env.LLVM }}
# export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
# ./configure --enable-experimental-jit --with-pydebug --disable-gil
# make all --jobs 4
Expand Down

0 comments on commit 4c8e4db

Please sign in to comment.