]> gitweb.factorcode.org Git - factor.git/commitdiff
travis: Don't build udis on windows
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 29 Dec 2018 22:18:08 +0000 (16:18 -0600)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 29 Dec 2018 22:18:08 +0000 (16:18 -0600)
.travis.yml

index 5a850838acf52cac5a271055a8727e74823230da..f70f3fc5ebf46dbeab01e6f64c381c1f6b8ad2d9 100644 (file)
@@ -49,10 +49,11 @@ before_install:
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -sSL https://rvm.io/mpapis.asc | gpg --import - ; fi
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -sSL https://rvm.io/pkuczynski.asc | gpg --import - ; fi
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -sSL https://get.rvm.io | bash -s stable; fi  # https://github.com/travis-ci/travis-ci/issues/6307
-  - >
-    wget https://github.com/vmt/udis86/archive/v1.7.2.tar.gz && tar xzvf v1.7.2.tar.gz &&
-    ( cd udis86-1.7.2/ && ./autogen.sh && ./configure --enable-shared=yes && make && sudo make install ) &&
-    ( [[ "$TRAVIS_OS_NAME" != "osx" ]] && sudo ldconfig || true )
+  - if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then
+      wget https://github.com/vmt/udis86/archive/v1.7.2.tar.gz && tar xzvf v1.7.2.tar.gz &&
+      ( cd udis86-1.7.2/ && ./autogen.sh && ./configure --enable-shared=yes && make && sudo make install ) &&
+      ( [[ "$TRAVIS_OS_NAME" != "osx" ]] && sudo ldconfig || true );
+    fi
   - git remote set-branches --add origin master
   - git remote set-branches --add origin clean-windows-x86-64
   - git remote set-branches --add origin clean-windows-x86-32