From 1ebaed721befa98583ff7c65df90c134f3df26b7 Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Tue, 9 Feb 2016 15:36:27 +0300 Subject: Add platform.machine() output (curious about Windows strings) --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index b885dd9ef..182ef0878 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,6 +3,7 @@ install: build_script: - cmd: python --version + - cmd: python -c "import platform; print(platform.machine())" - cmd: python setup.py install --qmake=\path\to\bin\qmake --cmake=\path\to\bin\cmake --openssl=\path\to\openssl\bin build_script: -- cgit v1.2.3 From 8ab49c3ba8397142bce2105d73fcac1fc55284fa Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Tue, 9 Feb 2016 15:44:24 +0300 Subject: appveyor.yml: Properly show diagnostic information --- appveyor.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'appveyor.yml') diff --git a/appveyor.yml b/appveyor.yml index 182ef0878..5ae224f5e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,9 @@ -install: - - cmd: git submodule update --init --recursive - -build_script: +init: - cmd: python --version - cmd: python -c "import platform; print(platform.machine())" - - cmd: python setup.py install --qmake=\path\to\bin\qmake --cmake=\path\to\bin\cmake --openssl=\path\to\openssl\bin + +install: + - cmd: git submodule update --init --recursive build_script: - cmd: >- -- cgit v1.2.3