View Issue Details

IDProjectCategoryView StatusLast Update
0013718ScribusBuild Systempublic2016-02-12 20:55
ReporterKunda Assigned Toplinnell 
PrioritynormalSeverityminorReproducibilityhave not tried
Status closedResolutionfixed 
PlatformMacOSXOSYosemiteOS Version10.10.5
Product Version1.5.1svn 
Target Version1.5.1Fixed in Version1.5.1svn 
Summary0013718: TravisCI OSX build - remove 'make install'
DescriptionOSX build on TravisCI takes 14 min longer then Linux build. one main reason is that
make install
is implemented. This patch removes it.
https://patch-diff.githubusercontent.com/raw/luzpaz/scribus/pull/1.diff
TagsNo tags attached.
PatchNo

Activities

Kunda

2016-02-10 00:05

updater  

remove-osx-make-install.diff (893 bytes)   
diff --git a/.travis.yml b/.travis.yml
index dc83e29..80e9f79 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -55,15 +55,16 @@ script:
       else
         export NPROC=1;
       fi;
-    cmake . -DWANT_HUNSPELL=1 -DWITH_PODOFO=1 -DWANT_GRAPHICSMAGICK=1 -DWANT_DEBUG=0 -DWANT_SVNVERSION=0 -DWANT_GUI_LANG=en_US;
-    make -j"$NPROC";
+      cmake . -DWANT_HUNSPELL=1 -DWITH_PODOFO=1 -DWANT_GRAPHICSMAGICK=1 -DWANT_DEBUG=0 -DWANT_SVNVERSION=0 -DWANT_GUI_LANG=en_US;
+      make -j"$NPROC";
+      # make install
     fi
   
 
   - if [ $TRAVIS_OS_NAME = osx -a $CC = clang ]; then
       cmake . -DCMAKE_PREFIX_PATH=/usr/local/opt/zlib -DBUILD_OSX_BUNDLE=1 -DQT_PREFIX=/usr/local/opt/qt5 -DWANT_HUNSPELL=1 -DWITH_PODOFO=1 -DWANT_GRAPHICSMAGICK=1 -DWANT_DEBUG=0 -DWANT_SVNVERSION=0 -DWANT_GUI_LANG=en_US;
       make -j8; 
-      make install;
+      # make install;
     fi
     
 notifications:

plinnell

2016-02-10 04:56

viewer   ~0038605

Committed revision 20963.

Kunda

2016-02-10 12:15

updater   ~0038612

Last edited: 2016-02-10 12:19

ot sure what but something is wrong. commit didn't trigger a travis build. Further examination needed

Edit: Travis reports: 'missing config'

Kunda

2016-02-12 20:55

updater   ~0038678

Fixed now. Closing

Issue History

Date Modified Username Field Change
2016-02-10 00:05 Kunda New Issue
2016-02-10 00:05 Kunda File Added: remove-osx-make-install.diff
2016-02-10 04:53 plinnell Assigned To => plinnell
2016-02-10 04:53 plinnell Status new => assigned
2016-02-10 04:56 plinnell Note Added: 0038605
2016-02-10 04:56 plinnell Status assigned => resolved
2016-02-10 04:56 plinnell Fixed in Version => 1.5.1svn
2016-02-10 04:56 plinnell Resolution open => fixed
2016-02-10 12:15 Kunda Note Added: 0038612
2016-02-10 12:19 Kunda Note Edited: 0038612
2016-02-12 20:55 Kunda Note Added: 0038678
2016-02-12 20:55 Kunda Status resolved => closed