Chris Bachhuber

Results 29 comments of Chris Bachhuber

+1 for CI! I'm just reading that github hosts CI for free for open source projects, I didn't expect that. I guess setting up CI will be interesting with the...

Thanks for removing, I had a weird connection issue yesterday and actually clicked 'Comment' twice :sweat_smile: I don't know why this happens on CI only. I'm also playing around with...

Awesome, looking forward to that! :smiley: :+1:

In our [CI workflow](https://github.com/TheCodez/dynamic-occupancy-grid-map/blob/master/.github/workflows/ubuntu_build.yml), you see the exact setup steps that are required to get a bare ubuntu 18.04 docker to compile this code. Do you see a difference to...

Right, the last two steps are only static code analysis, nothing you need to run.

I'm throwing a file together ad-hoc here from our setup instructions and CI, no guarantees for anything 😉 ```dockerfile FROM ubuntu:18.04 ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && \ apt-get...

I just tried to reproduce your problem on a pretty fresh Ubuntu 18.04 install, I can't. I did this: ```sh sudo apt install libopencv-dev sudo apt install libglfw3-dev libglew-dev libglm-dev...

`local_pipeline_ubuntu.sh` does more than I did above: it also formats and lints code. Please just try the commands I wrote above, these are sufficient to build.

What is the error message just before the segfault? I guess there's a version mismatch between the CUDA versions with which you compile and with which you run. > another...

To determine your installed cuda and nvcc version, what is the output of [these commands](https://stackoverflow.com/a/46117350/7260972)? ```sh nvcc --version cat /usr/local/cuda/version.txt ls -l /usr/local | grep cuda ```