ci: Enable scripts for Travis-CI and in-house Jenkins CI

Change-Id: Ibd4c0313945d57a037e87c54c56e6047c4daed73
Refs: #2477
diff --git a/src/contact-storage.cpp b/src/contact-storage.cpp
index c894849..20c6983 100644
--- a/src/contact-storage.cpp
+++ b/src/contact-storage.cpp
@@ -382,7 +382,7 @@
   sqlite3_bind_int64(stmt, 6, time::toUnixTimestamp(contact.getNotAfter()).count());
   sqlite3_bind_int(stmt, 7, (isIntroducer ? 1 : 0));
 
-  int res = sqlite3_step(stmt);
+  sqlite3_step(stmt);
 
   sqlite3_finalize(stmt);
 
@@ -396,7 +396,7 @@
     sqlite3_bind_string(stmt, 1, identity, SQLITE_TRANSIENT);
     sqlite3_bind_string(stmt, 2, it->first, SQLITE_TRANSIENT);
     sqlite3_bind_string(stmt, 3, it->second, SQLITE_TRANSIENT);
-    res = sqlite3_step(stmt);
+    sqlite3_step(stmt);
     sqlite3_finalize(stmt);
   }
 
@@ -410,7 +410,7 @@
                          -1, &stmt, 0);
       sqlite3_bind_string(stmt, 1, identity, SQLITE_TRANSIENT);
       sqlite3_bind_string(stmt, 2, it->first.toUri(), SQLITE_TRANSIENT);
-      res = sqlite3_step(stmt);
+      sqlite3_step(stmt);
       sqlite3_finalize(stmt);
       it++;
     }