Skip to content

Commit 1366eda

Browse files
Remove PGO from JIT CI
1 parent a4d4c1e commit 1366eda

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/jit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,15 @@ jobs:
111111
if: runner.os == 'Windows' && matrix.architecture != 'ARM64'
112112
run: |
113113
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
114-
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '--pgo' }} -p ${{ matrix.architecture }}
114+
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' }} -p ${{ matrix.architecture }}
115115
./PCbuild/rt.bat ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
116116
117117
# No PGO or tests (yet):
118118
- name: Emulated Windows
119119
if: runner.os == 'Windows' && matrix.architecture == 'ARM64'
120120
run: |
121121
choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
122-
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
122+
./PCbuild/build.bat --experimental-jit ${{ matrix.debug && '-d' }} -p ${{ matrix.architecture }}
123123
124124
# The `find` line is required as a result of https://github.com/actions/runner-images/issues/9966.
125125
# This is a bug in the macOS runner image where the pre-installed Python is installed in the same
@@ -132,7 +132,7 @@ jobs:
132132
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
133133
brew install llvm@${{ matrix.llvm }}
134134
export SDKROOT="$(xcrun --show-sdk-path)"
135-
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
135+
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' }}
136136
make all --jobs 4
137137
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
138138
@@ -141,7 +141,7 @@ jobs:
141141
run: |
142142
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}
143143
export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
144-
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto' }}
144+
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' }}
145145
make all --jobs 4
146146
./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
147147
@@ -162,7 +162,7 @@ jobs:
162162
CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}" \
163163
CPP="$CC --preprocess" \
164164
HOSTRUNNER=qemu-${{ matrix.architecture }} \
165-
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--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
165+
./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' }} --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
166166
make all --jobs 4
167167
./python -m test --ignorefile=Tools/jit/ignore-tests-emulated-linux.txt --multiprocess 0 --timeout 4500 --verbose2 --verbose3
168168

0 commit comments

Comments
 (0)