]> granicus.if.org Git - recode/commitdiff
macOS Travis fix: Cython extension needs installed librecode
authorReuben Thomas <rrt@sc3d.org>
Sun, 28 Jan 2018 19:07:38 +0000 (19:07 +0000)
committerReuben Thomas <rrt@sc3d.org>
Sun, 28 Jan 2018 22:41:23 +0000 (22:41 +0000)
.travis.yml

index fd0f1a059f943a13a19ffd1421935d001f322ad6..df4ead618e46b630d38a5a7a9f896ec447a02b15 100644 (file)
@@ -58,4 +58,5 @@ script:
   - ./bootstrap
   - ./configure --enable-silent-rules
   - make
-  - make distcheck
+  # The Cython-built Python extension doesn’t work without make install on macOS
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then make install && make check ; else make distcheck ; fi