mirror of
https://github.com/westonrobot/ugv_sdk
synced 2023-04-08 06:32:14 +08:00
100 lines
4.0 KiB
YAML
100 lines
4.0 KiB
YAML
## Build and test as standard C++ package
|
|
bionic-cpp-build:
|
|
stage: build
|
|
image: rduweston/ubuntu-ci:18.04
|
|
# before_script:
|
|
# - apt update && apt -y install libasio-dev
|
|
script:
|
|
- mkdir build && cd build
|
|
- cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
- cmake --build . && cpack
|
|
# artifacts:
|
|
# paths:
|
|
# - build/bin
|
|
# depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
|
|
# cache:
|
|
# paths:
|
|
# - "*.o"
|
|
|
|
bionic-cpp-test:
|
|
stage: test
|
|
image: rduweston/ubuntu-ci:18.04
|
|
# before_script:
|
|
# - apt update && apt -y install libasio-dev
|
|
script:
|
|
- mkdir build && cd build
|
|
- cmake -DBUILD_TESTS=ON ..
|
|
- cmake --build .
|
|
- ./bin/gtest_all
|
|
# dependencies:
|
|
# - cpp-build
|
|
|
|
focal-cpp-build:
|
|
stage: build
|
|
image: rduweston/ubuntu-ci:20.04
|
|
# before_script:
|
|
# - apt update && apt -y install libasio-dev
|
|
script:
|
|
- mkdir build && cd build
|
|
- cmake -DCMAKE_BUILD_TYPE=Release ..
|
|
- cmake --build . && cpack
|
|
|
|
focal-cpp-test:
|
|
stage: test
|
|
image: rduweston/ubuntu-ci:20.04
|
|
# before_script:
|
|
# - apt update && apt -y install libasio-dev
|
|
script:
|
|
- mkdir build && cd build
|
|
- cmake -DBUILD_TESTS=ON ..
|
|
- cmake --build .
|
|
- ./bin/gtest_all
|
|
|
|
## Build and test as catkin package
|
|
melodic-catkin-build:
|
|
stage: build
|
|
image: rduweston/ubuntu-ci:melodic-bionic
|
|
# before_script:
|
|
# - apt update && apt -y install libasio-dev
|
|
script:
|
|
- mkdir -p /catkin_ws/src && cd /catkin_ws/src && /bin/bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash; catkin_init_workspace"
|
|
- cp -r /builds/$CI_PROJECT_PATH /catkin_ws/src/wrp_sdk
|
|
- cd /catkin_ws/src && git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/westonrobot/ros/scout_base.git
|
|
- cd /catkin_ws/src && git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/westonrobot/ros/hunter_base.git
|
|
- cd /catkin_ws && /bin/bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash; catkin_make"
|
|
|
|
melodic-catkin-isolated-build:
|
|
stage: build
|
|
image: rduweston/ubuntu-ci:melodic-bionic
|
|
# before_script:
|
|
# - apt update && apt -y install libasio-dev
|
|
script:
|
|
- mkdir -p /catkin_ws/src && cd /catkin_ws/src && /bin/bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash; catkin_init_workspace"
|
|
- cp -r /builds/$CI_PROJECT_PATH /catkin_ws/src/wrp_sdk
|
|
- cd /catkin_ws/src && git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/westonrobot/ros/scout_base.git
|
|
- cd /catkin_ws/src && git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/westonrobot/ros/hunter_base.git
|
|
- cd /catkin_ws && /bin/bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash; catkin_make_isolated --install"
|
|
|
|
noetic-catkin-build:
|
|
stage: build
|
|
image: rduweston/ubuntu-ci:noetic-focal
|
|
# before_script:
|
|
# - apt update && apt -y install libasio-dev
|
|
script:
|
|
- mkdir -p /catkin_ws/src && cd /catkin_ws/src && /bin/bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash; catkin_init_workspace"
|
|
- cp -r /builds/$CI_PROJECT_PATH /catkin_ws/src/wrp_sdk
|
|
- cd /catkin_ws/src && git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/westonrobot/ros/scout_base.git
|
|
- cd /catkin_ws/src && git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/westonrobot/ros/hunter_base.git
|
|
- cd /catkin_ws && /bin/bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash; catkin_make"
|
|
|
|
noetic-catkin-isolated-build:
|
|
stage: build
|
|
image: rduweston/ubuntu-ci:noetic-focal
|
|
# before_script:
|
|
# - apt update && apt -y install libasio-dev
|
|
script:
|
|
- mkdir -p /catkin_ws/src && cd /catkin_ws/src && /bin/bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash; catkin_init_workspace"
|
|
- cp -r /builds/$CI_PROJECT_PATH /catkin_ws/src/wrp_sdk
|
|
- cd /catkin_ws/src && git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/westonrobot/ros/scout_base.git
|
|
- cd /catkin_ws/src && git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/westonrobot/ros/hunter_base.git
|
|
- cd /catkin_ws && /bin/bash -c "source /opt/ros/${ROS_DISTRO}/setup.bash; catkin_make_isolated --install" |