eidheim 7 years ago
parent
commit
e7b0a901f4
  1. 8
      .appveyor.sh

8
.appveyor.sh

@ -1,7 +1,9 @@
cd ${APPVEYOR_BUILD_FOLDER}
#!/bin/bash
set -x
cd "${APPVEYOR_BUILD_FOLDER}" || exit 1
git submodule update --init --recursive
mkdir -p build
cd build
cd build || exit 1
export PATH="/mingw64/bin:/usr/local/bin:/usr/bin:/bin:/c/WINDOWS/system32:/c/WINDOWS:/c/WINDOWS/System32/Wbem:/c/WINDOWS/System32/WindowsPowerShell/v1.0:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl"
exec sh -c "cmake -G\"MSYS Makefiles\" -DCMAKE_INSTALL_PREFIX=/mingw64 -DBUILD_TESTING=1 .. && make && make test"
exec bash -c "set -x && cmake -G\"MSYS Makefiles\" -DCMAKE_INSTALL_PREFIX=/mingw64 -DBUILD_TESTING=1 .. && make && make test"

Loading…
Cancel
Save