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:
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