Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Disable Windows test, the problem is pegen-specific
  • Loading branch information
lysnikolaou committed Mar 27, 2020
commit 46808b474beb5ba19a4ddb9ceb3303522bd73365
44 changes: 22 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,29 @@ on:
- '**/*.rst'

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_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_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'
Expand Down