From 7d0ed4f4fb7ec0690c2c98cedbfc52a87a156d40 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 22 Jan 2019 23:07:43 +0100 Subject: [PATCH] Fix++ Got: > ctest --output-on-failure -R 'java|python' > 'python'' is not recognized as an internal or external command, > operable program or batch file. > Command exited with code 255 --- .appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 7a6d599883..9b6af2ebcb 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -45,7 +45,8 @@ install: build_script: - cmake -G "MinGW Makefiles" -Denable_lua=OFF -Denable_documentation=OFF -Denable_java=ON -Denable_smpi=OFF -Denable_mallocators=OFF -Denable_lto=OFF . - mingw32-make.exe VERBOSE=1 java-all python-bindings # Only the Java and Python parts -- ctest --output-on-failure -R 'java|python' +- ctest --output-on-failure -R java +- ctest --output-on-failure -R python artifacts: - path: simgrid.jar -- 2.20.1