updated ci config, test using different images

This commit is contained in:
Ruixiang Du
2020-09-07 12:07:57 +08:00
parent a16e592ade
commit 4920859e9f

View File

@@ -1,25 +1,30 @@
image: rduweston/ubuntu-ci:18.04 ## Build and test as standard C++ package
cpp-build:
stage: cpp-build
image: rduweston/ubuntu-ci:18.04
before_script:
- apt update && apt -y install libasio-dev
script:
- mkdir build && cd build
- cmake ..
- 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"
build: cpp-test:
stage: build stage: cpp-test
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 -DBUILD_TESTS=ON ..
- cmake --build . && cpack - cmake --build .
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"
# run tests using the binary built before
test:
stage: test
script:
- ./build/bin/gtest_all - ./build/bin/gtest_all
dependencies: # dependencies:
- build # - cpp-build