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
Next Next commit
updated cfg
  • Loading branch information
Panos committed Aug 22, 2020
commit 33c313f0ca19a58ff1cad81f11afe6cbfc5d7fc4
22 changes: 11 additions & 11 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ install:
# - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"

# Check that we have the expected version and architecture for Python
- ps: ForEach($python in %PYTHON_VERS%) {
$pip="$python\\Scripts\\pip";
"$python --version";
"$python -c 'import struct; print(struct.calcsize('P') * 8)'";
"$pip install -U wheel setuptools twine cython";
- ps: ForEach($python in $env:PYTHON_VERS) {
$pip="$python\\Scripts\\pip"
"$python --version"
"$python -c 'import struct; print(struct.calcsize('P') * 8)'"
"$pip install -U wheel setuptools twine cython"
}

# .c files need to be generated on Windows to handle platform
Expand All @@ -88,23 +88,23 @@ build_script:
- ps: ls src/src/Release
- rm -f ssh/*.c
- ps: ForEach($python in %PYTHON_VERS%) {
"$python -V";
"$python setup.py build_ext";
"$python setup.py build";
"$python setup.py install";
"$python -V"
"$python setup.py build_ext"
"$python setup.py build"
"$python setup.py install"
}
- ps: ls ssh

test_script:
- cd dist
- ps: ForEach($python in %PYTHON_VERS%) {
"$python ..\\ci\\appveyor\\import_test.py";
"$python ..\\ci\\appveyor\\import_test.py"
}
- cd ..

after_test:
- ps: ForEach($python in %PYTHON_VERS%) {
"$python setup.py bdist_wheel";
"$python setup.py bdist_wheel"
}
- mv dist/* .

Expand Down