Skip to content

Commit

Permalink
Names
Browse files Browse the repository at this point in the history
  • Loading branch information
diegorusso committed Nov 29, 2024
1 parent 4c8e4db commit 6aa63e2
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 @@ -50,7 +50,7 @@ jobs:
# ./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3

jit-windows:
name: ${{ matrix.arch }} (${{ matrix.debug && 'Debug' || 'Release' }})
name: Windows (${{ matrix.arch }}, ${{ matrix.debug && 'Debug' || 'Release' }})
# needs: interpreter
runs-on: windows-latest
timeout-minutes: 90
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.arch }}
jit-mac:
name: ${{ matrix.os }} (${{ matrix.debug && 'Debug' || 'Release' }})
name: macOS (${{ matrix.os }}, ${{ matrix.debug && 'Debug' || 'Release' }})
#needs: interpreter
runs-on: ${{ matrix.os }}
timeout-minutes: 90
Expand All @@ -108,7 +108,7 @@ jobs:
# This is a bug in the macOS runner image where the pre-installed Python is installed in the same
# directory as the Homebrew Python, which causes the build to fail for macos-13. This line removes
# the symlink to the pre-installed Python so that the Homebrew Python is used instead.
- name: Native macOS
- name: ${{ runner.os }} (${{ runner.arch }})
run: |
brew update
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
Expand All @@ -119,7 +119,7 @@ jobs:
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
jit-linux:
name: ${{ matrix.os }} (${{ matrix.debug && 'Debug' || 'Release' }})
name: Ubuntu (${{ matrix.os }}, ${{ matrix.debug && 'Debug' || 'Release' }})
#needs: interpreter
runs-on: ${{ matrix.os }}
timeout-minutes: 90
Expand All @@ -143,7 +143,7 @@ jobs:
with:
python-version: '3.11'

- name: Native Linux
- name: ${{ runner.os }} (${{ runner.arch }})
run: |
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ env.LLVM }}
export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
Expand Down

0 comments on commit 6aa63e2

Please sign in to comment.