[postgis-tickets] r15531 - switch travis back not using sudo (root doesn't exist).

Regina Obe lr at pcorp.us
Sat Aug 5 09:58:26 PDT 2017


Author: robe
Date: 2017-08-05 09:58:26 -0700 (Sat, 05 Aug 2017)
New Revision: 15531

Modified:
   trunk/.travis.yml
Log:
switch travis back not using sudo (root doesn't exist). 
Try forcing precise (July 18 default of travis switched to trusty which is around when we started having problems).

Modified: trunk/.travis.yml
===================================================================
--- trunk/.travis.yml	2017-08-05 16:49:32 UTC (rev 15530)
+++ trunk/.travis.yml	2017-08-05 16:58:26 UTC (rev 15531)
@@ -16,17 +16,18 @@
   - ./autogen.sh
 
 language: c
+dist: precise
 
 compiler: gcc
 
 script:
   - ./configure
   - make
-  - sudo make check
-  - sudo make check RUNTESTFLAGS='--dumprestore'
+  - make check
+  - make check RUNTESTFLAGS='--dumprestore'
   - sudo make install
-  - sudo make installcheck
-  - sudo make installcheck RUNTESTFLAGS='--dumprestore'
+  - make installcheck
+  - make installcheck RUNTESTFLAGS='--dumprestore'
 
 notifications:
   email: false



More information about the postgis-tickets mailing list