Skip to content

Commit e8f9140

Browse files
committed
Revert "Build 3.11 and 3.10 in CI from fixed branches"
This reverts commit 72dbea7.
1 parent 6f4c284 commit e8f9140

File tree

1 file changed

+5
-23
lines changed

1 file changed

+5
-23
lines changed

.github/workflows/update-lint-and-build.yml

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -79,25 +79,7 @@ jobs:
7979
runs-on: ubuntu-latest
8080
strategy:
8181
matrix:
82-
version:
83-
- name: 3.13
84-
ref: 3.13
85-
account: python
86-
- name: 3.12
87-
ref: 3.12
88-
account: python
89-
- name: 3.11
90-
ref: backport-40a4d88-3.11
91-
account: miss-islington
92-
- name: '3.10'
93-
ref: blurb2_310
94-
account: vstinner
95-
- name: 3.9
96-
ref: 3.9
97-
account: python
98-
- name: 3.8
99-
ref: 3.8
100-
account: python
82+
version: [3.13, 3.12, 3.11, '3.10', 3.9, 3.8]
10183
format: [html, latex]
10284
needs: ['update-translation']
10385
steps:
@@ -106,21 +88,21 @@ jobs:
10688
python-version: 3
10789
- uses: actions/checkout@master
10890
with:
109-
repository: ${{ matrix.version.account }}/cpython
110-
ref: ${{ matrix.version.ref }}
91+
repository: python/cpython
92+
ref: ${{ matrix.version }}
11193
- run: make venv
11294
working-directory: ./Doc
11395
- uses: actions/checkout@master
11496
with:
115-
ref: ${{ matrix.version.name }}
97+
ref: ${{ matrix.version }}
11698
path: Doc/locales/pl/LC_MESSAGES
11799
- run: git pull
118100
working-directory: ./Doc/locales/pl/LC_MESSAGES
119101
- run: make -e SPHINXOPTS="-D language='pl' -D gettext_compact=0 -W --keep-going" ${{ matrix.format }}
120102
working-directory: ./Doc
121103
- uses: actions/upload-artifact@master
122104
with:
123-
name: build-${{ matrix.version.name }}-${{ matrix.format }}
105+
name: build-${{ matrix.version }}-${{ matrix.format }}
124106
path: Doc/build/${{ matrix.format }}
125107

126108
output-pdf:

0 commit comments

Comments
 (0)