Time Nick Message 00:45 Ruslan1 ? 15:16 Ruslan1 Hello 16:02 scr267 I'm running into a weird issue running a build of minetest on a Gitlab CI runner... Anyone know why this warning would show up at the cmake configuration stage even though the libraries are installed and the postgresql_library path is set: 16:02 scr267 "-- Could NOT find PostgreSQL (missing: PostgreSQL_LIBRARY PostgreSQL_INCLUDE_DIR PostgreSQL_TYPE_INCLUDE_DIR) " 16:15 BuckarooBanzai scr267: had the same problem, it needs a few more deps i think: https://git.rudin.io/docker/minetest/src/master/Dockerfile#L14 16:18 scr267 BuckarooBanzai, Cool, I'll check it out.l 16:18 scr267 BTW I've got the CI stuff mostly working... it's very simple at the moment but it deploys to dev successfully... Unfortunately the server doesn't start due to the missing dependency 16:18 scr267 XD 16:19 scr267 Thanks for the tip, I'll try that out. 16:35 pyrollo Is it OK to hate how "pos" field is computed ? 16:50 BuckarooBanzai pyrollo: only if you are using sqlite :D 16:51 pyrollo of course :) 16:51 pyrollo Or actually it could be something like (X+2048) << 24 + (Y+2048) << 12 + (Z+2048) 16:52 pyrollo That would work with any db and simplify many computations 16:52 pyrollo With sqlite3 & Postgresql it could be X, Y, Z as separate fields