summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2018-03-20 07:44:00 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2018-03-20 07:44:00 +0000
commit6fac581a2b9517b8058f978ea5442026f1340753 (patch)
treeee49d092d3522cc10128b6401fb18bae1cd7941a /appveyor.yml
parent9b44d1bb7e00301d67e20c3cca451feb2f6c2779 (diff)
downloadswig-6fac581a2b9517b8058f978ea5442026f1340753.tar.gz
Stop testing Python on Appveyor msys/mingw
I can't get python2 nor python3 to work with recent platform changes at Appveyor. Just compile SWIG binary for now.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml11
1 files changed, 4 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 74b1c045d..e2f6a6b32 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -22,8 +22,7 @@ environment:
PY3: 1
- SWIGLANG: python
OSVARIANT: cygwin
- - SWIGLANG: python
- OSVARIANT: mingw
+ - OSVARIANT: mingw
install:
- date /T & time /T
@@ -85,8 +84,6 @@ install:
- bash -c "which $CXX"
- bash -c "$CC --version | head -n 1"
- bash -c "$CXX --version | head -n 1"
-- bash -c "which python"
-- bash -c "python -V"
- bash -c "make --version | head -n 2"
- pwd
- echo MAKEJOBS=%MAKEJOBS%
@@ -105,9 +102,9 @@ test_script:
- .\swig.exe -version
- if not "%OSVARIANT%"=="" CCache\ccache-swig -V
- bash -c "file ./swig.exe"
-- bash -c "make check-%SWIGLANG%-version"
-- bash -c "time make -k check-%SWIGLANG%-examples %CHECK_OPTIONS%"
-- bash -c "time make -k check-%SWIGLANG%-test-suite -j%MAKEJOBS% %CHECK_OPTIONS%"
+- if not "%SWIGLANG%"=="" bash -c "make check-%SWIGLANG%-version %CHECK_OPTIONS%"
+- if not "%SWIGLANG%"=="" bash -c "time make -k check-%SWIGLANG%-examples %CHECK_OPTIONS%"
+- if not "%SWIGLANG%"=="" bash -c "time make -k check-%SWIGLANG%-test-suite -j%MAKEJOBS% %CHECK_OPTIONS%"
# Do not build on tags (GitHub only)
skip_tags: true