2017-08-06 04:20:16 +08:00
|
|
|
|
# This is a sample build configuration for C++ – Make.
|
|
|
|
|
# Check our guides at https://confluence.atlassian.com/x/5Q4SMw for more examples.
|
|
|
|
|
# Only use spaces to indent your .yml configuration.
|
|
|
|
|
# -----
|
|
|
|
|
# You can specify a custom docker image from Docker Hub as your build environment.
|
2018-10-09 09:00:49 +08:00
|
|
|
|
image: dellaert/ubuntu-boost-tbb-eigen3:latest
|
2017-08-06 04:20:16 +08:00
|
|
|
|
|
|
|
|
|
pipelines:
|
|
|
|
|
default:
|
|
|
|
|
- step:
|
2018-10-09 09:00:49 +08:00
|
|
|
|
caches:
|
|
|
|
|
- docker
|
2017-08-06 04:20:16 +08:00
|
|
|
|
script: # Modify the commands below to build your repository.
|
|
|
|
|
- mkdir build
|
|
|
|
|
- cd build
|
2018-10-09 09:00:49 +08:00
|
|
|
|
- cmake -DGTSAM_USE_SYSTEM_EIGEN=ON -DGTSAM_USE_EIGEN_MKL=OFF ..
|
2017-08-06 04:20:16 +08:00
|
|
|
|
- make
|
|
|
|
|
- make check
|