55 - ' **jit**'
66 - ' Python/bytecodes.c'
77 - ' Python/optimizer*.c'
8- - ' Python/optimizer_bytecodes.c'
98 push :
109 paths :
1110 - ' **jit**'
1211 - ' Python/bytecodes.c'
1312 - ' Python/optimizer*.c'
14- - ' Python/optimizer_bytecodes.c'
1513 workflow_dispatch :
1614
1715concurrency :
2220 jit :
2321 name : ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})
2422 runs-on : ${{ matrix.runner }}
25- timeout-minutes : 60
23+ timeout-minutes : 75
2624 strategy :
2725 fail-fast : false
2826 matrix :
9593 run : |
9694 choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}
9795 ./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '--pgo' }} -p ${{ matrix.architecture }}
98- ./PCbuild/rt.bat ${{ matrix.debug && '-d' }} -p ${{ matrix.architecture }} -q --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
96+ ./PCbuild/rt.bat ${{ matrix.debug && '-d' }} -p ${{ matrix.architecture }} -q --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 4500 --verbose2 --verbose3
9997
10098 # No PGO or tests (yet):
10199 - name : Emulated Windows
@@ -108,10 +106,10 @@ jobs:
108106 if : runner.os == 'macOS'
109107 run : |
110108 brew install llvm@${{ matrix.llvm }}
111- export SDKROOT="$(xcrun --show-sdk-path)"
112- ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
109+ SDKROOT="$(xcrun --show-sdk-path)" \
110+ ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
113111 make all --jobs 4
114- ./python.exe -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
112+ ./python.exe -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 4500 --verbose2 --verbose3
115113
116114 - name : Native Linux
117115 if : runner.os == 'Linux' && matrix.architecture == 'x86_64'
@@ -120,7 +118,7 @@ jobs:
120118 export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
121119 ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
122120 make all --jobs 4
123- ./python -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
121+ ./python -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 4500 --verbose2 --verbose3
124122
125123 - name : Emulated Linux
126124 if : runner.os == 'Linux' && matrix.architecture != 'x86_64'
@@ -134,10 +132,10 @@ jobs:
134132 sudo apt install --yes "gcc-$HOST" qemu-user
135133 ${{ !matrix.debug && matrix.compiler == 'clang' && './configure --enable-optimizations' || '' }}
136134 ${{ !matrix.debug && matrix.compiler == 'clang' && 'make profile-run-stamp --jobs 4' || '' }}
137- export CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}"
138- export CPP="$CC --preprocess"
139- export HOSTRUNNER=qemu-${{ matrix.architecture }}
140135 export QEMU_LD_PREFIX="/usr/$HOST"
141- ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }} --build=x86_64-linux-gnu --host="$HOST" --with-build-python=../build/bin/python3 --with-pkg-config=no ac_cv_buggy_getaddrinfo=no ac_cv_file__dev_ptc=no ac_cv_file__dev_ptmx=yes
136+ CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}" \
137+ CPP="$CC --preprocess" \
138+ HOSTRUNNER=qemu-${{ matrix.architecture }} \
139+ ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }} --build=x86_64-linux-gnu --host="$HOST" --with-build-python=../build/bin/python3 --with-pkg-config=no ac_cv_buggy_getaddrinfo=no ac_cv_file__dev_ptc=no ac_cv_file__dev_ptmx=yes
142140 make all --jobs 4
143- ./python -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 3600 --verbose2 --verbose3
141+ ./python -m test --exclude ${{ matrix.exclude }} --multiprocess 0 --timeout 4500 --verbose2 --verbose3
0 commit comments