diff --git a/.github/workflows/jit.yml b/.github/workflows/jit.yml index b7cab5f3272ee0..0077cd0209ff23 100644 --- a/.github/workflows/jit.yml +++ b/.github/workflows/jit.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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"