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
@@ -111,7 +109,7 @@ jobs:
111109 SDKROOT="$(xcrun --show-sdk-path)" \
112110 ./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'
@@ -140,4 +138,4 @@ jobs:
140138 HOSTRUNNER=qemu-${{ matrix.architecture }} \
141139 ./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