2019-12-16 14:35:22 -04:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
2019-12-16 15:15:08 -04:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- 3.8
|
|
|
|
- 3.7
|
|
|
|
paths-ignore:
|
|
|
|
- 'Doc/**'
|
|
|
|
- 'Misc/**'
|
|
|
|
- '**/*.md'
|
|
|
|
- '**/*.rst'
|
2019-12-16 14:35:22 -04:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- 3.8
|
|
|
|
- 3.7
|
|
|
|
paths-ignore:
|
|
|
|
- 'Doc/**'
|
|
|
|
- 'Misc/**'
|
2019-12-16 15:15:08 -04:00
|
|
|
- '**/*.md'
|
|
|
|
- '**/*.rst'
|
2019-12-16 14:35:22 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_win32:
|
|
|
|
name: 'Windows (x86)'
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Build CPython
|
|
|
|
run: .\PCbuild\build.bat -e -p Win32
|
|
|
|
- name: Display build info
|
|
|
|
run: .\python.bat -m test.pythoninfo
|
|
|
|
- name: Tests
|
|
|
|
run: .\PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
|
|
|
|
|
|
|
|
build_win_amd64:
|
|
|
|
name: 'Windows (x64)'
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Build CPython
|
|
|
|
run: .\PCbuild\build.bat -e -p x64
|
|
|
|
- name: Display build info
|
|
|
|
run: .\python.bat -m test.pythoninfo
|
|
|
|
- name: Tests
|
|
|
|
run: .\PCbuild\rt.bat -x64 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
|
|
|
|
|
|
|
|
build_macos:
|
|
|
|
name: 'macOS'
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Configure CPython
|
|
|
|
run: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-dev
|
|
|
|
- name: Build CPython
|
2020-02-26 15:21:41 -04:00
|
|
|
run: make -j4
|
2019-12-16 14:35:22 -04:00
|
|
|
- name: Display build info
|
|
|
|
run: make pythoninfo
|
|
|
|
- name: Tests
|
|
|
|
run: make buildbottest TESTOPTS="-j4 -uall,-cpu"
|
|
|
|
|
|
|
|
build_ubuntu:
|
|
|
|
name: 'Ubuntu'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
OPENSSL_VER: 1.1.1d
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: sudo ./.github/workflows/posix-deps-apt.sh
|
|
|
|
- name: 'Restore OpenSSL build'
|
|
|
|
id: cache-openssl
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ./multissl/openssl/${{ env.OPENSSL_VER }}
|
|
|
|
key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
|
|
|
|
- name: Install OpenSSL
|
|
|
|
if: steps.cache-openssl.outputs.cache-hit != 'true'
|
|
|
|
run: python3 Tools/ssl/multissltests.py --steps=library --base-directory $PWD/multissl --openssl $OPENSSL_VER --system Linux
|
|
|
|
- name: Configure CPython
|
|
|
|
run: ./configure --with-pydebug --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
|
|
|
|
- name: Build CPython
|
2020-02-26 15:21:41 -04:00
|
|
|
run: make -j4
|
2019-12-16 14:35:22 -04:00
|
|
|
- name: Display build info
|
|
|
|
run: make pythoninfo
|
|
|
|
- name: Tests
|
|
|
|
run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
|