File tree Expand file tree Collapse file tree 2 files changed +17
-597
lines changed Expand file tree Collapse file tree 2 files changed +17
-597
lines changed Original file line number Diff line number Diff line change 93
93
matrix :
94
94
os : [ubuntu-latest, macos-latest]
95
95
python-version : [3.6, 3.7, 3.8, 3.9]
96
- platform : [x64]
96
+ platform : [x86, x64]
97
97
with_contrib : [0, 1]
98
98
without_gui : [0, 1]
99
99
build_sdist : [0]
@@ -103,7 +103,6 @@ jobs:
103
103
REPO_DIR : .
104
104
BUILD_COMMIT : master
105
105
PROJECT_SPEC : opencv-python
106
- PLAT : x86_64
107
106
MB_PYTHON_VERSION : ${{ matrix.python-version }}
108
107
TRAVIS_PYTHON_VERSION : ${{ matrix.python-version }}
109
108
MB_ML_VER : 2014
@@ -139,6 +138,8 @@ jobs:
139
138
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV; else echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV; fi
140
139
if [ "schedule" == "${{ github.event_name }}" ]; then echo "TRAVIS_EVENT_TYPE=cron" >> $GITHUB_ENV; else echo "TRAVIS_EVENT_TYPE=${{ github.event_name }}" >> $GITHUB_ENV; fi
141
140
if [ "schedule" == "${{ github.event_name }}" ]; then echo "BUILD_COMMIT=master" >> $GITHUB_ENV; else echo "BUILD_COMMIT=$BUILD_COMMIT" >> $GITHUB_ENV; fi
141
+ if [ "x64" == "${{ matrix.platform }}" ]; then echo "PLAT=x86_64" >> $GITHUB_ENV; fi
142
+ if [ "x86" == "${{ matrix.platform }}" ]; then echo "PLAT=i686" >> $GITHUB_ENV; fi
142
143
echo "BUILD_DEPENDS=$(echo $NP_BUILD_DEP)" >> $GITHUB_ENV;
143
144
echo "TEST_DEPENDS=$(echo $NP_TEST_DEP)" >> $GITHUB_ENV;
144
145
You can’t perform that action at this time.
0 commit comments