2018-10-09 09:03:45 +08:00
|
|
|
|
# Built from sample configuration for C++ – Make.
|
|
|
|
|
# Check https://confluence.atlassian.com/x/5Q4SMw for more examples.
|
2017-08-06 04:20:16 +08:00
|
|
|
|
# -----
|
2018-10-09 09:03:45 +08:00
|
|
|
|
# Our custom docker image from Docker Hub as the build environment.
|
2018-10-09 11:24:19 +08:00
|
|
|
|
image: dellaert/ubuntu-boost-tbb-eigen3:bionic
|
2017-08-06 04:20:16 +08:00
|
|
|
|
|
|
|
|
|
pipelines:
|
|
|
|
|
default:
|
|
|
|
|
- step:
|
|
|
|
|
script: # Modify the commands below to build your repository.
|
|
|
|
|
- mkdir build
|
|
|
|
|
- cd build
|
2018-10-10 02:38:34 +08:00
|
|
|
|
- cmake -DGTSAM_USE_SYSTEM_EIGEN=OFF -DGTSAM_USE_EIGEN_MKL=OFF ..
|
2018-10-09 11:24:19 +08:00
|
|
|
|
- make -j2
|
|
|
|
|
- make -j2 check
|