mirror of
https://github.com/westonrobot/ugv_sdk
synced 2023-04-08 06:32:14 +08:00
updated ci config, test using different images
This commit is contained in:
@@ -1,25 +1,30 @@
|
|||||||
image: rduweston/ubuntu-ci:18.04
|
## Build and test as standard C++ package
|
||||||
|
cpp-build:
|
||||||
build:
|
stage: cpp-build
|
||||||
stage: build
|
image: rduweston/ubuntu-ci:18.04
|
||||||
before_script:
|
before_script:
|
||||||
- apt update && apt -y install libasio-dev
|
- apt update && apt -y install libasio-dev
|
||||||
script:
|
script:
|
||||||
- mkdir build && cd build
|
- mkdir build && cd build
|
||||||
- cmake -DBUILD_TESTS=ON ..
|
- cmake ..
|
||||||
- cmake --build . && cpack
|
- cmake --build . && cpack
|
||||||
artifacts:
|
# artifacts:
|
||||||
paths:
|
# paths:
|
||||||
- build/bin
|
# - build/bin
|
||||||
# depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
|
# depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
|
||||||
# cache:
|
# cache:
|
||||||
# paths:
|
# paths:
|
||||||
# - "*.o"
|
# - "*.o"
|
||||||
|
|
||||||
# run tests using the binary built before
|
cpp-test:
|
||||||
test:
|
stage: cpp-test
|
||||||
stage: test
|
image: rduweston/ubuntu-ci:18.04
|
||||||
|
before_script:
|
||||||
|
- apt update && apt -y install libasio-dev
|
||||||
script:
|
script:
|
||||||
|
- mkdir build && cd build
|
||||||
|
- cmake -DBUILD_TESTS=ON ..
|
||||||
|
- cmake --build .
|
||||||
- ./build/bin/gtest_all
|
- ./build/bin/gtest_all
|
||||||
dependencies:
|
# dependencies:
|
||||||
- build
|
# - cpp-build
|
||||||
|
|||||||
Reference in New Issue
Block a user