File tree Expand file tree Collapse file tree 6 files changed +16
-14
lines changed Expand file tree Collapse file tree 6 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 6
6
- script : ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
7
7
displayName : ' Configure CPython (debug)'
8
8
9
- - script : make -s - j4
9
+ - script : make -j4
10
10
displayName : ' Build CPython'
11
11
12
12
- script : make pythoninfo
Original file line number Diff line number Diff line change 20
20
- script : ./configure --with-pydebug
21
21
displayName : ' Configure CPython (debug)'
22
22
23
- - script : make -s - j4
23
+ - script : make -j4
24
24
displayName : ' Build CPython'
25
25
26
26
- ${{ if eq(parameters.coverage, 'true') }} :
Original file line number Diff line number Diff line change 51
51
- name : Configure CPython
52
52
run : ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
53
53
- name : Build CPython
54
- run : make -s - j4
54
+ run : make -j4
55
55
- name : Display build info
56
56
run : make pythoninfo
57
57
- name : Tests
78
78
- name : Configure CPython
79
79
run : ./configure --with-pydebug --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
80
80
- name : Build CPython
81
- run : make -s - j4
81
+ run : make -j4
82
82
- name : Display build info
83
83
run : make pythoninfo
84
84
- name : Tests
Original file line number Diff line number Diff line change 40
40
- name : Configure CPython
41
41
run : ./configure --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
42
42
- name : Build CPython
43
- run : make -s - j4
43
+ run : make -j4
44
44
- name : Display build info
45
45
run : make pythoninfo
46
46
- name : ' Coverage Preparation'
Original file line number Diff line number Diff line change @@ -23,17 +23,17 @@ jobs:
23
23
runs-on : ubuntu-latest
24
24
steps :
25
25
- uses : actions/checkout@v1
26
- - uses : actions/setup-python@v1
27
- with :
28
- python-version : ' 3.7'
29
- architecture : ' x64'
26
+ - name : ' Install Dependencies'
27
+ run : sudo ./.github/workflows/posix-deps-apt.sh && sudo apt-get install wamerican
28
+ - name : ' Configure CPython'
29
+ run : ./configure --with-pydebug
30
+ - name : ' Build CPython'
31
+ run : make -j4
30
32
- name : ' Install build dependencies'
31
- run : python -m pip install sphinx==2.2.0 blurb python-docs-theme
33
+ run : make -C Doc/ PYTHON=../ python venv
32
34
- name : ' Build documentation'
33
- run : |
34
- cd Doc
35
- make check suspicious html PYTHON=python
36
- - name : Upload
35
+ run : xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" doctest suspicious html
36
+ - name : ' Upload'
37
37
uses : actions/upload-artifact@v1
38
38
with :
39
39
name : doc-html
Original file line number Diff line number Diff line change 2
2
What's New In Python 3.0
3
3
****************************
4
4
5
+ TEST CHANGE TO BE UNDONE
6
+
5
7
.. XXX Add trademark info for Apple, Microsoft.
6
8
7
9
:Author: Guido van Rossum
You can’t perform that action at this time.
0 commit comments