Skip to content

Commit 3f8a58b

Browse files
authored
PEP 617: Only run the CI with the new parser (GH-19664)
1 parent c5fc156 commit 3f8a58b

File tree

2 files changed

+0
-46
lines changed

2 files changed

+0
-46
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313
- '**/*.rst'
1414
pull_request:
1515
branches:
16-
- pegen
1716
- master
1817
- 3.8
1918
- 3.7
@@ -51,22 +50,6 @@ jobs:
5150
build_macos:
5251
name: 'macOS'
5352
runs-on: macos-latest
54-
env:
55-
PYTHONOLDPARSER: old
56-
steps:
57-
- uses: actions/checkout@v1
58-
- name: Configure CPython
59-
run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
60-
- name: Build CPython
61-
run: make -j4
62-
- name: Display build info
63-
run: make pythoninfo
64-
- name: Tests
65-
run: make buildbottest TESTOPTS="-j4 -uall,-cpu"
66-
67-
build_macos_pegen:
68-
name: 'macOS - Pegen'
69-
runs-on: macos-latest
7053
steps:
7154
- uses: actions/checkout@v1
7255
- name: Configure CPython
@@ -81,34 +64,6 @@ jobs:
8164
build_ubuntu:
8265
name: 'Ubuntu'
8366
runs-on: ubuntu-latest
84-
env:
85-
OPENSSL_VER: 1.1.1f
86-
PYTHONOLDPARSER: old
87-
steps:
88-
- uses: actions/checkout@v1
89-
- name: Install Dependencies
90-
run: sudo ./.github/workflows/posix-deps-apt.sh
91-
- name: 'Restore OpenSSL build'
92-
id: cache-openssl
93-
uses: actions/cache@v1
94-
with:
95-
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
96-
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
97-
- name: Install OpenSSL
98-
if: steps.cache-openssl.outputs.cache-hit != 'true'
99-
run: python3 Tools/ssl/multissltests.py --steps=library --base-directory $PWD/multissl --openssl $OPENSSL_VER --system Linux
100-
- name: Configure CPython
101-
run: ./configure --with-pydebug --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
102-
- name: Build CPython
103-
run: make -j4
104-
- name: Display build info
105-
run: make pythoninfo
106-
- name: Tests
107-
run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
108-
109-
build_ubuntu_pegen:
110-
name: 'Ubuntu - Pegen'
111-
runs-on: ubuntu-latest
11267
env:
11368
OPENSSL_VER: 1.1.1f
11469
steps:

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ env:
2222
branches:
2323
only:
2424
- master
25-
- pegen
2625
- /^\d\.\d+$/
2726
- buildbot-custom
2827

0 commit comments

Comments
 (0)