3681 Use x86 Python for Windows testing #1047

Merged
sajith merged 14 commits from 3681.github-actions-use-x86-windows into master 2021-04-27 22:36:13 +00:00
1 changed files with 6 additions and 6 deletions
Showing only changes of commit 68603fc015 - Show all commits

View File

@ -35,7 +35,7 @@ jobs:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
if: ( matrix.os != 'windows-latest' && matrix.python-version != '2.7' )
if: ${{ matrix.os != 'windows-latest' }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
@ -45,7 +45,7 @@ jobs:
# vcpython27 compiler, building a netifaces wheel is not an
# option anymore, so let us test on 32-bit Windows.
- name: Set up Python ${{ matrix.python-version }} [Windows x86]
if: ( matrix.os == 'windows-latest' && matrix.python-version == '2.7' )
if: ${{ matrix.os == 'windows-latest' }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
@ -187,14 +187,14 @@ jobs:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
if: ( matrix.os != 'windows-latest' && matrix.python-version != '2.7' )
if: ${{ matrix.os != 'windows-latest' }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
# See this step under coverage job.
- name: Set up Python ${{ matrix.python-version }} [Windows x86]
if: ( matrix.os == 'windows-latest' && matrix.python-version == '2.7' )
if: ${{ matrix.os == 'windows-latest' }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
@ -251,14 +251,14 @@ jobs:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
if: ( matrix.os != 'windows-latest' && matrix.python-version != '2.7' )
if: ${{ matrix.os != 'windows-latest' }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
# See this step under coverage job.
- name: Set up Python ${{ matrix.python-version }} [Windows x86]
if: ( matrix.os == 'windows-latest' && matrix.python-version == '2.7' )
if: ${{ matrix.os == 'windows-latest' }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}